@carrot-foundation/schemas 0.1.21 → 0.1.23
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/README.md +55 -7
- package/dist/index.cjs +84 -69
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +68 -65
- package/dist/index.d.ts +68 -65
- package/dist/index.js +84 -69
- package/dist/index.js.map +1 -1
- package/package.json +3 -2
- package/schemas/ipfs/gas-id/gas-id.example.json +1 -1
- package/schemas/ipfs/mass-id/mass-id.example.json +32 -30
- package/schemas/ipfs/mass-id/mass-id.schema.json +367 -172
- package/schemas/ipfs/recycled-id/recycled-id.example.json +1 -1
- package/schemas/ipfs/shared/definitions/definitions.schema.json +3 -8
- package/schemas/ipfs/shared/entities/location/location.schema.json +3 -8
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
|
3
3
|
"title": "MassID NFT IPFS Record",
|
|
4
4
|
"description": "Complete MassID NFT IPFS record including fixed attributes and detailed waste tracking data",
|
|
5
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/
|
|
6
|
-
"version": "
|
|
5
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.1.23/schemas/ipfs/mass-id/mass-id.schema.json",
|
|
6
|
+
"version": "0.1.23",
|
|
7
7
|
"type": "object",
|
|
8
8
|
"properties": {
|
|
9
9
|
"$schema": {
|
|
@@ -35,19 +35,30 @@
|
|
|
35
35
|
"version": {
|
|
36
36
|
"title": "Schema Version",
|
|
37
37
|
"description": "Version of the schema, using semantic versioning",
|
|
38
|
-
"examples": [
|
|
38
|
+
"examples": [
|
|
39
|
+
"0.1.0",
|
|
40
|
+
"1.0.0",
|
|
41
|
+
"2.1.3"
|
|
42
|
+
],
|
|
39
43
|
"type": "string",
|
|
40
44
|
"minLength": 1,
|
|
41
45
|
"pattern": "^v?\\d+\\.\\d+\\.\\d+(-[a-zA-Z0-9.-]+)?(\\+[a-zA-Z0-9.-]+)?$"
|
|
42
46
|
}
|
|
43
47
|
},
|
|
44
|
-
"required": [
|
|
48
|
+
"required": [
|
|
49
|
+
"hash",
|
|
50
|
+
"type",
|
|
51
|
+
"version"
|
|
52
|
+
],
|
|
45
53
|
"additionalProperties": false
|
|
46
54
|
},
|
|
47
55
|
"created_at": {
|
|
48
56
|
"title": "Created At",
|
|
49
57
|
"description": "ISO 8601 creation timestamp for this record",
|
|
50
|
-
"examples": [
|
|
58
|
+
"examples": [
|
|
59
|
+
"2024-12-05T11:02:47.000Z",
|
|
60
|
+
"2025-02-22T10:35:12.000Z"
|
|
61
|
+
],
|
|
51
62
|
"type": "string",
|
|
52
63
|
"format": "date-time",
|
|
53
64
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$"
|
|
@@ -101,7 +112,9 @@
|
|
|
101
112
|
"name": {
|
|
102
113
|
"title": "Creator Name",
|
|
103
114
|
"description": "Company or individual name that created this record",
|
|
104
|
-
"examples": [
|
|
115
|
+
"examples": [
|
|
116
|
+
"Carrot Foundation"
|
|
117
|
+
],
|
|
105
118
|
"type": "string"
|
|
106
119
|
},
|
|
107
120
|
"id": {
|
|
@@ -117,7 +130,10 @@
|
|
|
117
130
|
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
118
131
|
}
|
|
119
132
|
},
|
|
120
|
-
"required": [
|
|
133
|
+
"required": [
|
|
134
|
+
"name",
|
|
135
|
+
"id"
|
|
136
|
+
],
|
|
121
137
|
"additionalProperties": false
|
|
122
138
|
},
|
|
123
139
|
"relationships": {
|
|
@@ -143,7 +159,11 @@
|
|
|
143
159
|
"type": {
|
|
144
160
|
"title": "Relationship Type",
|
|
145
161
|
"description": "Type of relationship to the referenced record",
|
|
146
|
-
"examples": [
|
|
162
|
+
"examples": [
|
|
163
|
+
"mass-id",
|
|
164
|
+
"audit",
|
|
165
|
+
"collection"
|
|
166
|
+
],
|
|
147
167
|
"type": "string",
|
|
148
168
|
"enum": [
|
|
149
169
|
"collection",
|
|
@@ -169,7 +189,10 @@
|
|
|
169
189
|
"type": "string"
|
|
170
190
|
}
|
|
171
191
|
},
|
|
172
|
-
"required": [
|
|
192
|
+
"required": [
|
|
193
|
+
"target_uri",
|
|
194
|
+
"type"
|
|
195
|
+
],
|
|
173
196
|
"additionalProperties": false
|
|
174
197
|
}
|
|
175
198
|
},
|
|
@@ -182,22 +205,36 @@
|
|
|
182
205
|
"title": "Blockchain Network",
|
|
183
206
|
"description": "Blockchain Network Environment",
|
|
184
207
|
"type": "string",
|
|
185
|
-
"enum": [
|
|
208
|
+
"enum": [
|
|
209
|
+
"mainnet",
|
|
210
|
+
"testnet"
|
|
211
|
+
]
|
|
186
212
|
},
|
|
187
213
|
"deployment": {
|
|
188
214
|
"title": "Deployment Environment",
|
|
189
215
|
"description": "System environment where this record was generated",
|
|
190
216
|
"type": "string",
|
|
191
|
-
"enum": [
|
|
217
|
+
"enum": [
|
|
218
|
+
"production",
|
|
219
|
+
"development",
|
|
220
|
+
"testing"
|
|
221
|
+
]
|
|
192
222
|
},
|
|
193
223
|
"data_set_name": {
|
|
194
224
|
"title": "Data Set Name",
|
|
195
225
|
"description": "Name of the data set for this record",
|
|
196
226
|
"type": "string",
|
|
197
|
-
"enum": [
|
|
227
|
+
"enum": [
|
|
228
|
+
"TEST",
|
|
229
|
+
"PROD"
|
|
230
|
+
]
|
|
198
231
|
}
|
|
199
232
|
},
|
|
200
|
-
"required": [
|
|
233
|
+
"required": [
|
|
234
|
+
"blockchain_network",
|
|
235
|
+
"deployment",
|
|
236
|
+
"data_set_name"
|
|
237
|
+
],
|
|
201
238
|
"additionalProperties": false
|
|
202
239
|
},
|
|
203
240
|
"data": {
|
|
@@ -205,15 +242,19 @@
|
|
|
205
242
|
"description": "MassID-specific data containing waste tracking and chain of custody information",
|
|
206
243
|
"type": "object",
|
|
207
244
|
"properties": {
|
|
208
|
-
"
|
|
209
|
-
"title": "Waste
|
|
210
|
-
"description": "Standardized waste material
|
|
245
|
+
"waste_properties": {
|
|
246
|
+
"title": "Waste Properties",
|
|
247
|
+
"description": "Standardized waste material properties and regulatory information",
|
|
211
248
|
"type": "object",
|
|
212
249
|
"properties": {
|
|
213
|
-
"
|
|
214
|
-
"title": "
|
|
215
|
-
"description": "
|
|
216
|
-
"examples": [
|
|
250
|
+
"type": {
|
|
251
|
+
"title": "Waste Type",
|
|
252
|
+
"description": "Waste material category",
|
|
253
|
+
"examples": [
|
|
254
|
+
"Organic",
|
|
255
|
+
"Plastic",
|
|
256
|
+
"Metal"
|
|
257
|
+
],
|
|
217
258
|
"type": "string",
|
|
218
259
|
"minLength": 1
|
|
219
260
|
},
|
|
@@ -237,7 +278,12 @@
|
|
|
237
278
|
"code": {
|
|
238
279
|
"title": "Classification Code",
|
|
239
280
|
"description": "Local waste classification code",
|
|
240
|
-
"examples": [
|
|
281
|
+
"examples": [
|
|
282
|
+
"20 01 01",
|
|
283
|
+
"D001",
|
|
284
|
+
"EWC-150101",
|
|
285
|
+
"IBAMA-A001"
|
|
286
|
+
],
|
|
241
287
|
"type": "string",
|
|
242
288
|
"minLength": 1,
|
|
243
289
|
"maxLength": 20
|
|
@@ -257,45 +303,66 @@
|
|
|
257
303
|
},
|
|
258
304
|
"system": {
|
|
259
305
|
"title": "Classification System",
|
|
260
|
-
"description": "Classification system name (
|
|
306
|
+
"description": "Classification system name - currently supports IBAMA (Instituto Brasileiro do Meio Ambiente e dos Recursos Naturais Renováveis)",
|
|
261
307
|
"examples": [
|
|
262
|
-
"
|
|
263
|
-
"US EPA Codes",
|
|
264
|
-
"Ibama Waste Code",
|
|
265
|
-
"Brazilian ABNT Classification"
|
|
308
|
+
"IBAMA"
|
|
266
309
|
],
|
|
267
310
|
"type": "string",
|
|
268
|
-
"
|
|
269
|
-
|
|
311
|
+
"enum": [
|
|
312
|
+
"IBAMA"
|
|
313
|
+
]
|
|
270
314
|
}
|
|
271
315
|
},
|
|
272
|
-
"required": [
|
|
316
|
+
"required": [
|
|
317
|
+
"code",
|
|
318
|
+
"description",
|
|
319
|
+
"system"
|
|
320
|
+
],
|
|
273
321
|
"additionalProperties": false
|
|
274
322
|
},
|
|
275
323
|
"measurement_unit": {
|
|
276
324
|
"title": "Measurement Unit",
|
|
277
325
|
"description": "Unit of measurement for the waste quantity",
|
|
278
|
-
"examples": [
|
|
326
|
+
"examples": [
|
|
327
|
+
"kg",
|
|
328
|
+
"ton"
|
|
329
|
+
],
|
|
279
330
|
"type": "string",
|
|
280
|
-
"enum": [
|
|
331
|
+
"enum": [
|
|
332
|
+
"kg",
|
|
333
|
+
"ton"
|
|
334
|
+
]
|
|
281
335
|
},
|
|
282
336
|
"net_weight": {
|
|
283
337
|
"title": "Net Weight",
|
|
284
338
|
"description": "Net weight of the waste batch in the specified measurement unit",
|
|
285
|
-
"examples": [
|
|
339
|
+
"examples": [
|
|
340
|
+
0,
|
|
341
|
+
45.2,
|
|
342
|
+
72.5
|
|
343
|
+
],
|
|
286
344
|
"type": "number",
|
|
287
345
|
"minimum": 0
|
|
288
346
|
},
|
|
289
347
|
"contamination_level": {
|
|
290
348
|
"title": "Contamination Level",
|
|
291
349
|
"description": "Level of contamination in the waste batch",
|
|
292
|
-
"examples": [
|
|
350
|
+
"examples": [
|
|
351
|
+
"Low",
|
|
352
|
+
"Medium",
|
|
353
|
+
"None"
|
|
354
|
+
],
|
|
293
355
|
"type": "string",
|
|
294
|
-
"enum": [
|
|
356
|
+
"enum": [
|
|
357
|
+
"None",
|
|
358
|
+
"Low",
|
|
359
|
+
"Medium",
|
|
360
|
+
"High"
|
|
361
|
+
]
|
|
295
362
|
}
|
|
296
363
|
},
|
|
297
364
|
"required": [
|
|
298
|
-
"
|
|
365
|
+
"type",
|
|
299
366
|
"subtype",
|
|
300
367
|
"measurement_unit",
|
|
301
368
|
"net_weight"
|
|
@@ -312,22 +379,25 @@
|
|
|
312
379
|
"description": "Geographic location with address and coordinate information",
|
|
313
380
|
"type": "object",
|
|
314
381
|
"properties": {
|
|
315
|
-
"
|
|
316
|
-
"title": "Location ID",
|
|
317
|
-
"description": "
|
|
382
|
+
"id_hash": {
|
|
383
|
+
"title": "Location ID Hash",
|
|
384
|
+
"description": "Anonymized identifier for the location",
|
|
318
385
|
"examples": [
|
|
319
|
-
"
|
|
320
|
-
"
|
|
321
|
-
"f77afa89-1c58-40fd-9bf5-8a86703a8af4"
|
|
386
|
+
"87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489",
|
|
387
|
+
"6e83b8e6373847bbdc056549bedda38dc88854ce41ba4fca11e0fc6ce3e07ef6"
|
|
322
388
|
],
|
|
323
389
|
"type": "string",
|
|
324
|
-
"
|
|
325
|
-
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
390
|
+
"pattern": "^[0-9a-fA-F]{64}$"
|
|
326
391
|
},
|
|
327
392
|
"municipality": {
|
|
328
393
|
"title": "Municipality",
|
|
329
394
|
"description": "Municipality or city name",
|
|
330
|
-
"examples": [
|
|
395
|
+
"examples": [
|
|
396
|
+
"New York",
|
|
397
|
+
"São Paulo",
|
|
398
|
+
"London",
|
|
399
|
+
"Tokyo"
|
|
400
|
+
],
|
|
331
401
|
"type": "string",
|
|
332
402
|
"minLength": 1,
|
|
333
403
|
"maxLength": 50
|
|
@@ -335,7 +405,12 @@
|
|
|
335
405
|
"administrative_division": {
|
|
336
406
|
"title": "Administrative Division",
|
|
337
407
|
"description": "State, province, or administrative region",
|
|
338
|
-
"examples": [
|
|
408
|
+
"examples": [
|
|
409
|
+
"California",
|
|
410
|
+
"Ontario",
|
|
411
|
+
"Bavaria",
|
|
412
|
+
"Queensland"
|
|
413
|
+
],
|
|
339
414
|
"type": "string",
|
|
340
415
|
"minLength": 1,
|
|
341
416
|
"maxLength": 50
|
|
@@ -343,14 +418,23 @@
|
|
|
343
418
|
"administrative_division_code": {
|
|
344
419
|
"title": "Administrative Division Code",
|
|
345
420
|
"description": "ISO 3166-2 administrative division code",
|
|
346
|
-
"examples": [
|
|
421
|
+
"examples": [
|
|
422
|
+
"BR-AP",
|
|
423
|
+
"BR-ES",
|
|
424
|
+
"US-CA"
|
|
425
|
+
],
|
|
347
426
|
"type": "string",
|
|
348
427
|
"pattern": "^[A-Z]{2}-[A-Z0-9]{1,3}$"
|
|
349
428
|
},
|
|
350
429
|
"country": {
|
|
351
430
|
"title": "Country",
|
|
352
431
|
"description": "Full country name in English",
|
|
353
|
-
"examples": [
|
|
432
|
+
"examples": [
|
|
433
|
+
"United States",
|
|
434
|
+
"Canada",
|
|
435
|
+
"Germany",
|
|
436
|
+
"Australia"
|
|
437
|
+
],
|
|
354
438
|
"type": "string",
|
|
355
439
|
"minLength": 1,
|
|
356
440
|
"maxLength": 50
|
|
@@ -358,21 +442,23 @@
|
|
|
358
442
|
"country_code": {
|
|
359
443
|
"title": "Country Code",
|
|
360
444
|
"description": "ISO 3166-1 alpha-2 country code",
|
|
361
|
-
"examples": [
|
|
445
|
+
"examples": [
|
|
446
|
+
"BR",
|
|
447
|
+
"US",
|
|
448
|
+
"DE"
|
|
449
|
+
],
|
|
362
450
|
"type": "string",
|
|
363
451
|
"pattern": "^[A-Z]{2}$"
|
|
364
452
|
},
|
|
365
|
-
"
|
|
366
|
-
"title": "Responsible Participant ID",
|
|
367
|
-
"description": "ID of the participant responsible for this location",
|
|
453
|
+
"responsible_participant_id_hash": {
|
|
454
|
+
"title": "Responsible Participant ID Hash",
|
|
455
|
+
"description": "Anonymized ID of the participant responsible for this location",
|
|
368
456
|
"examples": [
|
|
369
|
-
"
|
|
370
|
-
"
|
|
371
|
-
"f77afa89-1c58-40fd-9bf5-8a86703a8af4"
|
|
457
|
+
"87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489",
|
|
458
|
+
"6e83b8e6373847bbdc056549bedda38dc88854ce41ba4fca11e0fc6ce3e07ef6"
|
|
372
459
|
],
|
|
373
460
|
"type": "string",
|
|
374
|
-
"
|
|
375
|
-
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
461
|
+
"pattern": "^[0-9a-fA-F]{64}$"
|
|
376
462
|
},
|
|
377
463
|
"coordinates": {
|
|
378
464
|
"title": "Coordinates",
|
|
@@ -382,23 +468,37 @@
|
|
|
382
468
|
"latitude": {
|
|
383
469
|
"title": "Latitude",
|
|
384
470
|
"description": "GPS latitude coordinate",
|
|
385
|
-
"examples": [
|
|
471
|
+
"examples": [
|
|
472
|
+
-0.02,
|
|
473
|
+
-20.38,
|
|
474
|
+
40.713
|
|
475
|
+
],
|
|
386
476
|
"type": "number",
|
|
387
477
|
"minimum": -90,
|
|
388
|
-
"maximum": 90
|
|
478
|
+
"maximum": 90,
|
|
479
|
+
"multipleOf": 0.001
|
|
389
480
|
},
|
|
390
481
|
"longitude": {
|
|
391
482
|
"title": "Longitude",
|
|
392
483
|
"description": "GPS longitude coordinate",
|
|
393
|
-
"examples": [
|
|
484
|
+
"examples": [
|
|
485
|
+
-51.06,
|
|
486
|
+
-40.34,
|
|
487
|
+
-74.006
|
|
488
|
+
],
|
|
394
489
|
"type": "number",
|
|
395
490
|
"minimum": -180,
|
|
396
|
-
"maximum": 180
|
|
491
|
+
"maximum": 180,
|
|
492
|
+
"multipleOf": 0.001
|
|
397
493
|
},
|
|
398
494
|
"precision_level": {
|
|
399
495
|
"title": "Precision Level",
|
|
400
496
|
"description": "Level of coordinate precision",
|
|
401
|
-
"examples": [
|
|
497
|
+
"examples": [
|
|
498
|
+
"city",
|
|
499
|
+
"exact",
|
|
500
|
+
"neighborhood"
|
|
501
|
+
],
|
|
402
502
|
"type": "string",
|
|
403
503
|
"enum": [
|
|
404
504
|
"exact",
|
|
@@ -409,38 +509,37 @@
|
|
|
409
509
|
]
|
|
410
510
|
}
|
|
411
511
|
},
|
|
412
|
-
"required": [
|
|
512
|
+
"required": [
|
|
513
|
+
"latitude",
|
|
514
|
+
"longitude",
|
|
515
|
+
"precision_level"
|
|
516
|
+
],
|
|
413
517
|
"additionalProperties": false
|
|
414
518
|
},
|
|
415
519
|
"facility_type": {
|
|
416
520
|
"title": "Facility Type",
|
|
417
521
|
"description": "Type of facility at this location",
|
|
418
522
|
"examples": [
|
|
419
|
-
"
|
|
523
|
+
"Collection Point",
|
|
420
524
|
"Recycling Facility",
|
|
421
|
-
"
|
|
525
|
+
"Administrative Office"
|
|
422
526
|
],
|
|
423
527
|
"type": "string",
|
|
424
528
|
"enum": [
|
|
425
|
-
"Waste Generation",
|
|
426
529
|
"Collection Point",
|
|
427
|
-
"Transfer Station",
|
|
428
|
-
"Sorting Facility",
|
|
429
|
-
"Composting Facility",
|
|
430
530
|
"Recycling Facility",
|
|
431
|
-
"
|
|
432
|
-
"
|
|
433
|
-
"Administrative Office"
|
|
531
|
+
"Administrative Office",
|
|
532
|
+
"Other"
|
|
434
533
|
]
|
|
435
534
|
}
|
|
436
535
|
},
|
|
437
536
|
"required": [
|
|
438
|
-
"
|
|
537
|
+
"id_hash",
|
|
439
538
|
"municipality",
|
|
440
539
|
"administrative_division",
|
|
441
540
|
"country",
|
|
442
541
|
"country_code",
|
|
443
|
-
"
|
|
542
|
+
"responsible_participant_id_hash",
|
|
444
543
|
"coordinates"
|
|
445
544
|
],
|
|
446
545
|
"additionalProperties": false
|
|
@@ -456,17 +555,15 @@
|
|
|
456
555
|
"description": "A participant in the waste management supply chain",
|
|
457
556
|
"type": "object",
|
|
458
557
|
"properties": {
|
|
459
|
-
"
|
|
460
|
-
"title": "Participant ID",
|
|
461
|
-
"description": "
|
|
558
|
+
"id_hash": {
|
|
559
|
+
"title": "Participant ID Hash",
|
|
560
|
+
"description": "Anonymized identifier for the participant",
|
|
462
561
|
"examples": [
|
|
463
|
-
"
|
|
464
|
-
"
|
|
465
|
-
"f77afa89-1c58-40fd-9bf5-8a86703a8af4"
|
|
562
|
+
"87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489",
|
|
563
|
+
"6e83b8e6373847bbdc056549bedda38dc88854ce41ba4fca11e0fc6ce3e07ef6"
|
|
466
564
|
],
|
|
467
565
|
"type": "string",
|
|
468
|
-
"
|
|
469
|
-
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
566
|
+
"pattern": "^[0-9a-fA-F]{64}$"
|
|
470
567
|
},
|
|
471
568
|
"name": {
|
|
472
569
|
"title": "Participant Name",
|
|
@@ -488,14 +585,22 @@
|
|
|
488
585
|
"items": {
|
|
489
586
|
"title": "Participant Role",
|
|
490
587
|
"description": "Role that a participant plays in the waste management supply chain",
|
|
491
|
-
"examples": [
|
|
588
|
+
"examples": [
|
|
589
|
+
"Waste Generator",
|
|
590
|
+
"Hauler",
|
|
591
|
+
"Recycler"
|
|
592
|
+
],
|
|
492
593
|
"type": "string",
|
|
493
594
|
"minLength": 1,
|
|
494
595
|
"maxLength": 100
|
|
495
596
|
}
|
|
496
597
|
}
|
|
497
598
|
},
|
|
498
|
-
"required": [
|
|
599
|
+
"required": [
|
|
600
|
+
"id_hash",
|
|
601
|
+
"name",
|
|
602
|
+
"roles"
|
|
603
|
+
],
|
|
499
604
|
"additionalProperties": false
|
|
500
605
|
}
|
|
501
606
|
},
|
|
@@ -565,34 +670,34 @@
|
|
|
565
670
|
"format": "date-time",
|
|
566
671
|
"pattern": "^(?:(?:\\d\\d[2468][048]|\\d\\d[13579][26]|\\d\\d0[48]|[02468][048]00|[13579][26]00)-02-29|\\d{4}-(?:(?:0[13578]|1[02])-(?:0[1-9]|[12]\\d|3[01])|(?:0[469]|11)-(?:0[1-9]|[12]\\d|30)|(?:02)-(?:0[1-9]|1\\d|2[0-8])))T(?:(?:[01]\\d|2[0-3]):[0-5]\\d(?::[0-5]\\d(?:\\.\\d+)?)?(?:Z))$"
|
|
567
672
|
},
|
|
568
|
-
"
|
|
569
|
-
"title": "Participant ID",
|
|
673
|
+
"participant_id_hash": {
|
|
674
|
+
"title": "Participant ID Hash",
|
|
570
675
|
"description": "Reference to participant in the participants array",
|
|
571
676
|
"examples": [
|
|
572
|
-
"
|
|
573
|
-
"
|
|
574
|
-
"f77afa89-1c58-40fd-9bf5-8a86703a8af4"
|
|
677
|
+
"87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489",
|
|
678
|
+
"6e83b8e6373847bbdc056549bedda38dc88854ce41ba4fca11e0fc6ce3e07ef6"
|
|
575
679
|
],
|
|
576
680
|
"type": "string",
|
|
577
|
-
"
|
|
578
|
-
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
681
|
+
"pattern": "^[0-9a-fA-F]{64}$"
|
|
579
682
|
},
|
|
580
|
-
"
|
|
581
|
-
"title": "Location ID",
|
|
683
|
+
"location_id_hash": {
|
|
684
|
+
"title": "Location ID Hash",
|
|
582
685
|
"description": "Reference to location in the locations array",
|
|
583
686
|
"examples": [
|
|
584
|
-
"
|
|
585
|
-
"
|
|
586
|
-
"f77afa89-1c58-40fd-9bf5-8a86703a8af4"
|
|
687
|
+
"87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489",
|
|
688
|
+
"6e83b8e6373847bbdc056549bedda38dc88854ce41ba4fca11e0fc6ce3e07ef6"
|
|
587
689
|
],
|
|
588
690
|
"type": "string",
|
|
589
|
-
"
|
|
590
|
-
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
691
|
+
"pattern": "^[0-9a-fA-F]{64}$"
|
|
591
692
|
},
|
|
592
693
|
"weight": {
|
|
593
694
|
"title": "Event Weight",
|
|
594
695
|
"description": "Mass weight after this event",
|
|
595
|
-
"examples": [
|
|
696
|
+
"examples": [
|
|
697
|
+
0,
|
|
698
|
+
45.2,
|
|
699
|
+
72.5
|
|
700
|
+
],
|
|
596
701
|
"type": "number",
|
|
597
702
|
"minimum": 0
|
|
598
703
|
},
|
|
@@ -647,10 +752,19 @@
|
|
|
647
752
|
}
|
|
648
753
|
]
|
|
649
754
|
},
|
|
755
|
+
"preserved_sensitivity": {
|
|
756
|
+
"title": "Preserved Sensitivity",
|
|
757
|
+
"description": "Indicates if the attribute contains sensitive information that was preserved",
|
|
758
|
+
"type": "boolean"
|
|
759
|
+
},
|
|
650
760
|
"format": {
|
|
651
761
|
"title": "Event Attribute Format",
|
|
652
762
|
"description": "Data format hint for proper display",
|
|
653
|
-
"examples": [
|
|
763
|
+
"examples": [
|
|
764
|
+
"KILOGRAM",
|
|
765
|
+
"DATE",
|
|
766
|
+
"PERCENTAGE"
|
|
767
|
+
],
|
|
654
768
|
"type": "string",
|
|
655
769
|
"enum": [
|
|
656
770
|
"KILOGRAM",
|
|
@@ -661,7 +775,9 @@
|
|
|
661
775
|
]
|
|
662
776
|
}
|
|
663
777
|
},
|
|
664
|
-
"required": [
|
|
778
|
+
"required": [
|
|
779
|
+
"name"
|
|
780
|
+
],
|
|
665
781
|
"additionalProperties": false
|
|
666
782
|
}
|
|
667
783
|
},
|
|
@@ -746,7 +862,10 @@
|
|
|
746
862
|
"maxLength": 100
|
|
747
863
|
}
|
|
748
864
|
},
|
|
749
|
-
"required": [
|
|
865
|
+
"required": [
|
|
866
|
+
"type",
|
|
867
|
+
"reference"
|
|
868
|
+
],
|
|
750
869
|
"additionalProperties": false
|
|
751
870
|
}
|
|
752
871
|
},
|
|
@@ -762,8 +881,8 @@
|
|
|
762
881
|
"event_id",
|
|
763
882
|
"event_name",
|
|
764
883
|
"timestamp",
|
|
765
|
-
"
|
|
766
|
-
"
|
|
884
|
+
"participant_id_hash",
|
|
885
|
+
"location_id_hash"
|
|
767
886
|
],
|
|
768
887
|
"additionalProperties": false
|
|
769
888
|
}
|
|
@@ -771,20 +890,32 @@
|
|
|
771
890
|
"total_distance_km": {
|
|
772
891
|
"title": "Total Distance (km)",
|
|
773
892
|
"description": "Total distance traveled across all transport events",
|
|
774
|
-
"examples": [
|
|
893
|
+
"examples": [
|
|
894
|
+
0,
|
|
895
|
+
45.2,
|
|
896
|
+
72.5
|
|
897
|
+
],
|
|
775
898
|
"type": "number",
|
|
776
899
|
"minimum": 0
|
|
777
900
|
},
|
|
778
901
|
"total_duration_hours": {
|
|
779
902
|
"title": "Total Duration (hours)",
|
|
780
903
|
"description": "Total time from first to last event in hours",
|
|
781
|
-
"examples": [
|
|
904
|
+
"examples": [
|
|
905
|
+
72.5,
|
|
906
|
+
24,
|
|
907
|
+
168.5
|
|
908
|
+
],
|
|
782
909
|
"type": "number",
|
|
783
910
|
"minimum": 0,
|
|
784
911
|
"multipleOf": 0.1
|
|
785
912
|
}
|
|
786
913
|
},
|
|
787
|
-
"required": [
|
|
914
|
+
"required": [
|
|
915
|
+
"events",
|
|
916
|
+
"total_distance_km",
|
|
917
|
+
"total_duration_hours"
|
|
918
|
+
],
|
|
788
919
|
"additionalProperties": false
|
|
789
920
|
},
|
|
790
921
|
"geographic_data": {
|
|
@@ -792,46 +923,40 @@
|
|
|
792
923
|
"description": "Geographic information about waste origin and processing locations",
|
|
793
924
|
"type": "object",
|
|
794
925
|
"properties": {
|
|
795
|
-
"
|
|
796
|
-
"title": "Origin Location ID",
|
|
926
|
+
"origin_location_id_hash": {
|
|
927
|
+
"title": "Origin Location ID Hash",
|
|
797
928
|
"description": "Reference to origin location in the locations array",
|
|
798
929
|
"examples": [
|
|
799
|
-
"
|
|
800
|
-
"
|
|
801
|
-
"f77afa89-1c58-40fd-9bf5-8a86703a8af4"
|
|
930
|
+
"87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489",
|
|
931
|
+
"6e83b8e6373847bbdc056549bedda38dc88854ce41ba4fca11e0fc6ce3e07ef6"
|
|
802
932
|
],
|
|
803
933
|
"type": "string",
|
|
804
|
-
"
|
|
805
|
-
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
934
|
+
"pattern": "^[0-9a-fA-F]{64}$"
|
|
806
935
|
},
|
|
807
|
-
"
|
|
808
|
-
"title": "Processing Location
|
|
936
|
+
"processing_location_id_hashes": {
|
|
937
|
+
"title": "Processing Location ID Hashes",
|
|
809
938
|
"description": "Locations where the waste was processed or handled",
|
|
810
939
|
"type": "array",
|
|
811
940
|
"items": {
|
|
812
|
-
"title": "
|
|
813
|
-
"description": "
|
|
941
|
+
"title": "SHA256 Hash",
|
|
942
|
+
"description": "SHA-256 cryptographic hash as hexadecimal string",
|
|
814
943
|
"examples": [
|
|
815
|
-
"
|
|
816
|
-
"
|
|
817
|
-
"f77afa89-1c58-40fd-9bf5-8a86703a8af4"
|
|
944
|
+
"87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489",
|
|
945
|
+
"6e83b8e6373847bbdc056549bedda38dc88854ce41ba4fca11e0fc6ce3e07ef6"
|
|
818
946
|
],
|
|
819
947
|
"type": "string",
|
|
820
|
-
"
|
|
821
|
-
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
948
|
+
"pattern": "^[0-9a-fA-F]{64}$"
|
|
822
949
|
}
|
|
823
950
|
},
|
|
824
|
-
"
|
|
825
|
-
"title": "Final Destination ID",
|
|
951
|
+
"final_destination_id_hash": {
|
|
952
|
+
"title": "Final Destination ID Hash",
|
|
826
953
|
"description": "Reference to final destination in the locations array",
|
|
827
954
|
"examples": [
|
|
828
|
-
"
|
|
829
|
-
"
|
|
830
|
-
"f77afa89-1c58-40fd-9bf5-8a86703a8af4"
|
|
955
|
+
"87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489",
|
|
956
|
+
"6e83b8e6373847bbdc056549bedda38dc88854ce41ba4fca11e0fc6ce3e07ef6"
|
|
831
957
|
],
|
|
832
958
|
"type": "string",
|
|
833
|
-
"
|
|
834
|
-
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
959
|
+
"pattern": "^[0-9a-fA-F]{64}$"
|
|
835
960
|
},
|
|
836
961
|
"transport_routes": {
|
|
837
962
|
"title": "Transport Routes",
|
|
@@ -842,34 +967,34 @@
|
|
|
842
967
|
"description": "Transport route segment information",
|
|
843
968
|
"type": "object",
|
|
844
969
|
"properties": {
|
|
845
|
-
"
|
|
846
|
-
"title": "From Location ID",
|
|
970
|
+
"from_location_id_hash": {
|
|
971
|
+
"title": "From Location ID Hash",
|
|
847
972
|
"description": "Reference to the origin location in the locations array",
|
|
848
973
|
"examples": [
|
|
849
|
-
"
|
|
850
|
-
"
|
|
851
|
-
"f77afa89-1c58-40fd-9bf5-8a86703a8af4"
|
|
974
|
+
"87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489",
|
|
975
|
+
"6e83b8e6373847bbdc056549bedda38dc88854ce41ba4fca11e0fc6ce3e07ef6"
|
|
852
976
|
],
|
|
853
977
|
"type": "string",
|
|
854
|
-
"
|
|
855
|
-
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
978
|
+
"pattern": "^[0-9a-fA-F]{64}$"
|
|
856
979
|
},
|
|
857
|
-
"
|
|
858
|
-
"title": "To Location ID",
|
|
980
|
+
"to_location_id_hash": {
|
|
981
|
+
"title": "To Location ID Hash",
|
|
859
982
|
"description": "Reference to the destination location in the locations array",
|
|
860
983
|
"examples": [
|
|
861
|
-
"
|
|
862
|
-
"
|
|
863
|
-
"f77afa89-1c58-40fd-9bf5-8a86703a8af4"
|
|
984
|
+
"87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489",
|
|
985
|
+
"6e83b8e6373847bbdc056549bedda38dc88854ce41ba4fca11e0fc6ce3e07ef6"
|
|
864
986
|
],
|
|
865
987
|
"type": "string",
|
|
866
|
-
"
|
|
867
|
-
"pattern": "^([0-9a-fA-F]{8}-[0-9a-fA-F]{4}-4[0-9a-fA-F]{3}-[89abAB][0-9a-fA-F]{3}-[0-9a-fA-F]{12})$"
|
|
988
|
+
"pattern": "^[0-9a-fA-F]{64}$"
|
|
868
989
|
},
|
|
869
990
|
"distance_km": {
|
|
870
991
|
"title": "Distance (km)",
|
|
871
992
|
"description": "Distance for this route segment in kilometers",
|
|
872
|
-
"examples": [
|
|
993
|
+
"examples": [
|
|
994
|
+
0,
|
|
995
|
+
45.2,
|
|
996
|
+
72.5
|
|
997
|
+
],
|
|
873
998
|
"type": "number",
|
|
874
999
|
"minimum": 0
|
|
875
1000
|
},
|
|
@@ -893,15 +1018,19 @@
|
|
|
893
1018
|
"duration_hours": {
|
|
894
1019
|
"title": "Duration (hours)",
|
|
895
1020
|
"description": "Time taken for this route segment in hours",
|
|
896
|
-
"examples": [
|
|
1021
|
+
"examples": [
|
|
1022
|
+
72.5,
|
|
1023
|
+
24,
|
|
1024
|
+
168.5
|
|
1025
|
+
],
|
|
897
1026
|
"type": "number",
|
|
898
1027
|
"minimum": 0,
|
|
899
1028
|
"multipleOf": 0.1
|
|
900
1029
|
}
|
|
901
1030
|
},
|
|
902
1031
|
"required": [
|
|
903
|
-
"
|
|
904
|
-
"
|
|
1032
|
+
"from_location_id_hash",
|
|
1033
|
+
"to_location_id_hash",
|
|
905
1034
|
"distance_km",
|
|
906
1035
|
"transport_method",
|
|
907
1036
|
"duration_hours"
|
|
@@ -911,15 +1040,15 @@
|
|
|
911
1040
|
}
|
|
912
1041
|
},
|
|
913
1042
|
"required": [
|
|
914
|
-
"
|
|
915
|
-
"
|
|
1043
|
+
"origin_location_id_hash",
|
|
1044
|
+
"final_destination_id_hash",
|
|
916
1045
|
"transport_routes"
|
|
917
1046
|
],
|
|
918
1047
|
"additionalProperties": false
|
|
919
1048
|
}
|
|
920
1049
|
},
|
|
921
1050
|
"required": [
|
|
922
|
-
"
|
|
1051
|
+
"waste_properties",
|
|
923
1052
|
"locations",
|
|
924
1053
|
"participants",
|
|
925
1054
|
"chain_of_custody",
|
|
@@ -945,7 +1074,11 @@
|
|
|
945
1074
|
"chain_id": {
|
|
946
1075
|
"title": "Chain ID",
|
|
947
1076
|
"description": "Blockchain chain ID",
|
|
948
|
-
"examples": [
|
|
1077
|
+
"examples": [
|
|
1078
|
+
1,
|
|
1079
|
+
137,
|
|
1080
|
+
11155111
|
|
1081
|
+
],
|
|
949
1082
|
"type": "integer",
|
|
950
1083
|
"minimum": 1,
|
|
951
1084
|
"maximum": 9007199254740991
|
|
@@ -960,7 +1093,11 @@
|
|
|
960
1093
|
"token_id": {
|
|
961
1094
|
"title": "Token ID",
|
|
962
1095
|
"description": "NFT token ID",
|
|
963
|
-
"examples": [
|
|
1096
|
+
"examples": [
|
|
1097
|
+
"123",
|
|
1098
|
+
"456789",
|
|
1099
|
+
"1000000"
|
|
1100
|
+
],
|
|
964
1101
|
"type": "string",
|
|
965
1102
|
"minLength": 1,
|
|
966
1103
|
"pattern": "^\\d+$"
|
|
@@ -989,7 +1126,11 @@
|
|
|
989
1126
|
"short_name": {
|
|
990
1127
|
"title": "Short Name",
|
|
991
1128
|
"description": "Compact name for UI summaries, tables, or tooltips",
|
|
992
|
-
"examples": [
|
|
1129
|
+
"examples": [
|
|
1130
|
+
"MassID #123",
|
|
1131
|
+
"RecycledID #456",
|
|
1132
|
+
"GasID #789"
|
|
1133
|
+
],
|
|
993
1134
|
"type": "string",
|
|
994
1135
|
"minLength": 1,
|
|
995
1136
|
"maxLength": 50
|
|
@@ -1019,7 +1160,11 @@
|
|
|
1019
1160
|
"background_color": {
|
|
1020
1161
|
"title": "Background Color",
|
|
1021
1162
|
"description": "Hex color code for marketplace background display",
|
|
1022
|
-
"examples": [
|
|
1163
|
+
"examples": [
|
|
1164
|
+
"#2D5A27",
|
|
1165
|
+
"#FF5733",
|
|
1166
|
+
"#1E90FF"
|
|
1167
|
+
],
|
|
1023
1168
|
"type": "string",
|
|
1024
1169
|
"minLength": 1,
|
|
1025
1170
|
"pattern": "^#[0-9A-F]{6}$"
|
|
@@ -1080,7 +1225,10 @@
|
|
|
1080
1225
|
"maxLength": 100
|
|
1081
1226
|
}
|
|
1082
1227
|
},
|
|
1083
|
-
"required": [
|
|
1228
|
+
"required": [
|
|
1229
|
+
"label",
|
|
1230
|
+
"url"
|
|
1231
|
+
],
|
|
1084
1232
|
"additionalProperties": false
|
|
1085
1233
|
}
|
|
1086
1234
|
},
|
|
@@ -1099,12 +1247,19 @@
|
|
|
1099
1247
|
"value": {
|
|
1100
1248
|
"title": "Waste Type",
|
|
1101
1249
|
"description": "Category or type of waste material",
|
|
1102
|
-
"examples": [
|
|
1250
|
+
"examples": [
|
|
1251
|
+
"Organic",
|
|
1252
|
+
"Plastic",
|
|
1253
|
+
"Metal"
|
|
1254
|
+
],
|
|
1103
1255
|
"type": "string",
|
|
1104
1256
|
"minLength": 1
|
|
1105
1257
|
}
|
|
1106
1258
|
},
|
|
1107
|
-
"required": [
|
|
1259
|
+
"required": [
|
|
1260
|
+
"trait_type",
|
|
1261
|
+
"value"
|
|
1262
|
+
],
|
|
1108
1263
|
"additionalProperties": false
|
|
1109
1264
|
},
|
|
1110
1265
|
{
|
|
@@ -1129,7 +1284,10 @@
|
|
|
1129
1284
|
"maxLength": 100
|
|
1130
1285
|
}
|
|
1131
1286
|
},
|
|
1132
|
-
"required": [
|
|
1287
|
+
"required": [
|
|
1288
|
+
"trait_type",
|
|
1289
|
+
"value"
|
|
1290
|
+
],
|
|
1133
1291
|
"additionalProperties": false
|
|
1134
1292
|
},
|
|
1135
1293
|
{
|
|
@@ -1144,7 +1302,11 @@
|
|
|
1144
1302
|
"value": {
|
|
1145
1303
|
"title": "Weight (kg)",
|
|
1146
1304
|
"description": "Weight measurement in kilograms",
|
|
1147
|
-
"examples": [
|
|
1305
|
+
"examples": [
|
|
1306
|
+
3000,
|
|
1307
|
+
1500,
|
|
1308
|
+
500
|
|
1309
|
+
],
|
|
1148
1310
|
"type": "number",
|
|
1149
1311
|
"minimum": 0
|
|
1150
1312
|
},
|
|
@@ -1153,7 +1315,11 @@
|
|
|
1153
1315
|
"const": "number"
|
|
1154
1316
|
}
|
|
1155
1317
|
},
|
|
1156
|
-
"required": [
|
|
1318
|
+
"required": [
|
|
1319
|
+
"trait_type",
|
|
1320
|
+
"value",
|
|
1321
|
+
"display_type"
|
|
1322
|
+
],
|
|
1157
1323
|
"additionalProperties": false
|
|
1158
1324
|
},
|
|
1159
1325
|
{
|
|
@@ -1172,7 +1338,10 @@
|
|
|
1172
1338
|
"maxLength": 100
|
|
1173
1339
|
}
|
|
1174
1340
|
},
|
|
1175
|
-
"required": [
|
|
1341
|
+
"required": [
|
|
1342
|
+
"trait_type",
|
|
1343
|
+
"value"
|
|
1344
|
+
],
|
|
1176
1345
|
"additionalProperties": false
|
|
1177
1346
|
},
|
|
1178
1347
|
{
|
|
@@ -1191,7 +1360,10 @@
|
|
|
1191
1360
|
"maxLength": 100
|
|
1192
1361
|
}
|
|
1193
1362
|
},
|
|
1194
|
-
"required": [
|
|
1363
|
+
"required": [
|
|
1364
|
+
"trait_type",
|
|
1365
|
+
"value"
|
|
1366
|
+
],
|
|
1195
1367
|
"additionalProperties": false
|
|
1196
1368
|
},
|
|
1197
1369
|
{
|
|
@@ -1210,7 +1382,10 @@
|
|
|
1210
1382
|
"maxLength": 100
|
|
1211
1383
|
}
|
|
1212
1384
|
},
|
|
1213
|
-
"required": [
|
|
1385
|
+
"required": [
|
|
1386
|
+
"trait_type",
|
|
1387
|
+
"value"
|
|
1388
|
+
],
|
|
1214
1389
|
"additionalProperties": false
|
|
1215
1390
|
},
|
|
1216
1391
|
{
|
|
@@ -1229,7 +1404,10 @@
|
|
|
1229
1404
|
"maxLength": 100
|
|
1230
1405
|
}
|
|
1231
1406
|
},
|
|
1232
|
-
"required": [
|
|
1407
|
+
"required": [
|
|
1408
|
+
"trait_type",
|
|
1409
|
+
"value"
|
|
1410
|
+
],
|
|
1233
1411
|
"additionalProperties": false
|
|
1234
1412
|
},
|
|
1235
1413
|
{
|
|
@@ -1248,12 +1426,15 @@
|
|
|
1248
1426
|
"maxLength": 100
|
|
1249
1427
|
}
|
|
1250
1428
|
},
|
|
1251
|
-
"required": [
|
|
1429
|
+
"required": [
|
|
1430
|
+
"trait_type",
|
|
1431
|
+
"value"
|
|
1432
|
+
],
|
|
1252
1433
|
"additionalProperties": false
|
|
1253
1434
|
},
|
|
1254
1435
|
{
|
|
1255
1436
|
"title": "Pick-up Date Attribute",
|
|
1256
|
-
"description": "Pick-up date attribute",
|
|
1437
|
+
"description": "Pick-up date attribute with Unix timestamp",
|
|
1257
1438
|
"type": "object",
|
|
1258
1439
|
"properties": {
|
|
1259
1440
|
"trait_type": {
|
|
@@ -1262,16 +1443,26 @@
|
|
|
1262
1443
|
},
|
|
1263
1444
|
"value": {
|
|
1264
1445
|
"title": "Pick-up Date Value",
|
|
1265
|
-
"description": "
|
|
1266
|
-
"
|
|
1267
|
-
|
|
1446
|
+
"description": "Unix timestamp in milliseconds when the waste was picked up from the source",
|
|
1447
|
+
"examples": [
|
|
1448
|
+
1704067200000,
|
|
1449
|
+
1735689600000,
|
|
1450
|
+
1762371245149
|
|
1451
|
+
],
|
|
1452
|
+
"type": "integer",
|
|
1453
|
+
"exclusiveMinimum": 0,
|
|
1454
|
+
"maximum": 9007199254740991
|
|
1268
1455
|
},
|
|
1269
1456
|
"display_type": {
|
|
1270
1457
|
"type": "string",
|
|
1271
1458
|
"const": "date"
|
|
1272
1459
|
}
|
|
1273
1460
|
},
|
|
1274
|
-
"required": [
|
|
1461
|
+
"required": [
|
|
1462
|
+
"trait_type",
|
|
1463
|
+
"value",
|
|
1464
|
+
"display_type"
|
|
1465
|
+
],
|
|
1275
1466
|
"additionalProperties": false
|
|
1276
1467
|
},
|
|
1277
1468
|
{
|
|
@@ -1294,7 +1485,11 @@
|
|
|
1294
1485
|
"const": "date"
|
|
1295
1486
|
}
|
|
1296
1487
|
},
|
|
1297
|
-
"required": [
|
|
1488
|
+
"required": [
|
|
1489
|
+
"trait_type",
|
|
1490
|
+
"value",
|
|
1491
|
+
"display_type"
|
|
1492
|
+
],
|
|
1298
1493
|
"additionalProperties": false
|
|
1299
1494
|
}
|
|
1300
1495
|
],
|
|
@@ -1319,4 +1514,4 @@
|
|
|
1319
1514
|
"attributes"
|
|
1320
1515
|
],
|
|
1321
1516
|
"additionalProperties": false
|
|
1322
|
-
}
|
|
1517
|
+
}
|