unitysvc-services 0.1.6__py3-none-any.whl → 0.1.8__py3-none-any.whl

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.

Potentially problematic release.


This version of unitysvc-services might be problematic. Click here for more details.

@@ -0,0 +1,378 @@
1
+ {
2
+ "$defs": {
3
+ "Document": {
4
+ "additionalProperties": false,
5
+ "properties": {
6
+ "category": {
7
+ "$ref": "#/$defs/DocumentCategoryEnum",
8
+ "description": "Document category for organization and filtering"
9
+ },
10
+ "description": {
11
+ "anyOf": [
12
+ {
13
+ "maxLength": 500,
14
+ "type": "string"
15
+ },
16
+ {
17
+ "type": "null"
18
+ }
19
+ ],
20
+ "default": null,
21
+ "description": "Document description",
22
+ "title": "Description"
23
+ },
24
+ "external_url": {
25
+ "anyOf": [
26
+ {
27
+ "maxLength": 1000,
28
+ "type": "string"
29
+ },
30
+ {
31
+ "type": "null"
32
+ }
33
+ ],
34
+ "default": null,
35
+ "description": "External URL for the document (mutually exclusive with object_key)",
36
+ "title": "External Url"
37
+ },
38
+ "file_path": {
39
+ "anyOf": [
40
+ {
41
+ "maxLength": 1000,
42
+ "type": "string"
43
+ },
44
+ {
45
+ "type": "null"
46
+ }
47
+ ],
48
+ "default": null,
49
+ "description": "Path to file to upload (mutually exclusive with external_url)",
50
+ "title": "File Path"
51
+ },
52
+ "is_active": {
53
+ "default": true,
54
+ "description": "Whether document is active",
55
+ "title": "Is Active",
56
+ "type": "boolean"
57
+ },
58
+ "is_public": {
59
+ "default": false,
60
+ "description": "Whether document is publicly accessible without authentication",
61
+ "title": "Is Public",
62
+ "type": "boolean"
63
+ },
64
+ "meta": {
65
+ "anyOf": [
66
+ {
67
+ "additionalProperties": true,
68
+ "type": "object"
69
+ },
70
+ {
71
+ "type": "null"
72
+ }
73
+ ],
74
+ "default": null,
75
+ "description": "JSON containing operation stats",
76
+ "title": "Meta"
77
+ },
78
+ "mime_type": {
79
+ "$ref": "#/$defs/MimeTypeEnum",
80
+ "description": "Document MIME type"
81
+ },
82
+ "sort_order": {
83
+ "default": 0,
84
+ "description": "Sort order within category",
85
+ "title": "Sort Order",
86
+ "type": "integer"
87
+ },
88
+ "title": {
89
+ "description": "Document title",
90
+ "maxLength": 255,
91
+ "minLength": 5,
92
+ "title": "Title",
93
+ "type": "string"
94
+ },
95
+ "version": {
96
+ "anyOf": [
97
+ {
98
+ "maxLength": 50,
99
+ "type": "string"
100
+ },
101
+ {
102
+ "type": "null"
103
+ }
104
+ ],
105
+ "default": null,
106
+ "description": "Document version",
107
+ "title": "Version"
108
+ }
109
+ },
110
+ "required": [
111
+ "title",
112
+ "mime_type",
113
+ "category"
114
+ ],
115
+ "title": "Document",
116
+ "type": "object"
117
+ },
118
+ "DocumentCategoryEnum": {
119
+ "enum": [
120
+ "getting_started",
121
+ "api_reference",
122
+ "tutorial",
123
+ "code_example",
124
+ "code_example_output",
125
+ "use_case",
126
+ "troubleshooting",
127
+ "changelog",
128
+ "best_practice",
129
+ "specification",
130
+ "service_level_agreement",
131
+ "terms_of_service",
132
+ "invoice",
133
+ "logo",
134
+ "avatar",
135
+ "other"
136
+ ],
137
+ "title": "DocumentCategoryEnum",
138
+ "type": "string"
139
+ },
140
+ "MimeTypeEnum": {
141
+ "enum": [
142
+ "markdown",
143
+ "python",
144
+ "javascript",
145
+ "bash",
146
+ "html",
147
+ "text",
148
+ "pdf",
149
+ "jpeg",
150
+ "png",
151
+ "svg",
152
+ "url"
153
+ ],
154
+ "title": "MimeTypeEnum",
155
+ "type": "string"
156
+ },
157
+ "SellerStatusEnum": {
158
+ "description": "Seller status enum.",
159
+ "enum": [
160
+ "active",
161
+ "pending",
162
+ "disabled",
163
+ "incomplete"
164
+ ],
165
+ "title": "SellerStatusEnum",
166
+ "type": "string"
167
+ },
168
+ "SellerTypeEnum": {
169
+ "enum": [
170
+ "individual",
171
+ "organization",
172
+ "partnership",
173
+ "corporation"
174
+ ],
175
+ "title": "SellerTypeEnum",
176
+ "type": "string"
177
+ }
178
+ },
179
+ "additionalProperties": false,
180
+ "description": "Seller information for marketplace sellers.\n\nEach repository can only have one seller.json file at the root of the data directory.",
181
+ "properties": {
182
+ "account_manager": {
183
+ "anyOf": [
184
+ {
185
+ "maxLength": 100,
186
+ "type": "string"
187
+ },
188
+ {
189
+ "type": "null"
190
+ }
191
+ ],
192
+ "default": null,
193
+ "description": "Email or username of the user managing this seller account",
194
+ "title": "Account Manager"
195
+ },
196
+ "business_registration": {
197
+ "anyOf": [
198
+ {
199
+ "maxLength": 100,
200
+ "type": "string"
201
+ },
202
+ {
203
+ "type": "null"
204
+ }
205
+ ],
206
+ "default": null,
207
+ "description": "Business registration number (if organization)",
208
+ "title": "Business Registration"
209
+ },
210
+ "contact_email": {
211
+ "description": "Primary contact email for the seller",
212
+ "format": "email",
213
+ "title": "Contact Email",
214
+ "type": "string"
215
+ },
216
+ "description": {
217
+ "anyOf": [
218
+ {
219
+ "maxLength": 1000,
220
+ "type": "string"
221
+ },
222
+ {
223
+ "type": "null"
224
+ }
225
+ ],
226
+ "default": null,
227
+ "description": "Brief description of the seller",
228
+ "title": "Description"
229
+ },
230
+ "display_name": {
231
+ "anyOf": [
232
+ {
233
+ "maxLength": 200,
234
+ "type": "string"
235
+ },
236
+ {
237
+ "type": "null"
238
+ }
239
+ ],
240
+ "default": null,
241
+ "description": "Human-readable seller name (e.g., 'ACME Corporation', 'John Doe')",
242
+ "title": "Display Name"
243
+ },
244
+ "documents": {
245
+ "anyOf": [
246
+ {
247
+ "items": {
248
+ "$ref": "#/$defs/Document"
249
+ },
250
+ "type": "array"
251
+ },
252
+ {
253
+ "type": "null"
254
+ }
255
+ ],
256
+ "default": null,
257
+ "description": "List of documents associated with the seller (e.g. business registration, tax documents)",
258
+ "title": "Documents"
259
+ },
260
+ "homepage": {
261
+ "anyOf": [
262
+ {
263
+ "format": "uri",
264
+ "maxLength": 2083,
265
+ "minLength": 1,
266
+ "type": "string"
267
+ },
268
+ {
269
+ "type": "null"
270
+ }
271
+ ],
272
+ "default": null,
273
+ "description": "Seller's homepage URL",
274
+ "title": "Homepage"
275
+ },
276
+ "is_verified": {
277
+ "default": false,
278
+ "description": "Whether the seller has been verified (KYC/business verification)",
279
+ "title": "Is Verified",
280
+ "type": "boolean"
281
+ },
282
+ "logo": {
283
+ "anyOf": [
284
+ {
285
+ "type": "string"
286
+ },
287
+ {
288
+ "format": "uri",
289
+ "maxLength": 2083,
290
+ "minLength": 1,
291
+ "type": "string"
292
+ },
293
+ {
294
+ "type": "null"
295
+ }
296
+ ],
297
+ "default": null,
298
+ "title": "Logo"
299
+ },
300
+ "name": {
301
+ "description": "Unique seller identifier (URL-friendly, e.g., 'acme-corp', 'john-doe')",
302
+ "maxLength": 100,
303
+ "minLength": 2,
304
+ "title": "Name",
305
+ "type": "string"
306
+ },
307
+ "schema": {
308
+ "default": "seller_v1",
309
+ "description": "Schema identifier",
310
+ "title": "Schema",
311
+ "type": "string"
312
+ },
313
+ "secondary_contact_email": {
314
+ "anyOf": [
315
+ {
316
+ "format": "email",
317
+ "type": "string"
318
+ },
319
+ {
320
+ "type": "null"
321
+ }
322
+ ],
323
+ "default": null,
324
+ "description": "Secondary contact email",
325
+ "title": "Secondary Contact Email"
326
+ },
327
+ "seller_type": {
328
+ "$ref": "#/$defs/SellerTypeEnum",
329
+ "default": "individual",
330
+ "description": "Type of seller entity"
331
+ },
332
+ "status": {
333
+ "$ref": "#/$defs/SellerStatusEnum",
334
+ "default": "active",
335
+ "description": "Seller status: active, disabled, or incomplete"
336
+ },
337
+ "stripe_connect_id": {
338
+ "anyOf": [
339
+ {
340
+ "maxLength": 255,
341
+ "type": "string"
342
+ },
343
+ {
344
+ "type": "null"
345
+ }
346
+ ],
347
+ "default": null,
348
+ "description": "Stripe Connect account ID for payment processing",
349
+ "title": "Stripe Connect Id"
350
+ },
351
+ "tax_id": {
352
+ "anyOf": [
353
+ {
354
+ "maxLength": 100,
355
+ "type": "string"
356
+ },
357
+ {
358
+ "type": "null"
359
+ }
360
+ ],
361
+ "default": null,
362
+ "description": "Tax identification number (EIN, VAT, etc.)",
363
+ "title": "Tax Id"
364
+ },
365
+ "time_created": {
366
+ "format": "date-time",
367
+ "title": "Time Created",
368
+ "type": "string"
369
+ }
370
+ },
371
+ "required": [
372
+ "time_created",
373
+ "name",
374
+ "contact_email"
375
+ ],
376
+ "title": "SellerV1",
377
+ "type": "object"
378
+ }