@carrot-foundation/schemas 0.3.0 → 0.3.2
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/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +12 -12
- package/schemas/ipfs/collection/collection.example.json +3 -3
- package/schemas/ipfs/collection/collection.schema.json +2 -2
- package/schemas/ipfs/credit/credit.example.json +3 -3
- package/schemas/ipfs/credit/credit.schema.json +2 -2
- package/schemas/ipfs/credit-purchase-receipt/credit-purchase-receipt.example.json +4 -4
- package/schemas/ipfs/credit-purchase-receipt/credit-purchase-receipt.schema.json +2 -2
- package/schemas/ipfs/credit-retirement-receipt/credit-retirement-receipt.example.json +4 -4
- package/schemas/ipfs/credit-retirement-receipt/credit-retirement-receipt.schema.json +2 -2
- package/schemas/ipfs/gas-id/gas-id.example.json +4 -4
- package/schemas/ipfs/gas-id/gas-id.schema.json +2 -2
- package/schemas/ipfs/mass-id/mass-id.example.json +4 -4
- package/schemas/ipfs/mass-id/mass-id.schema.json +2 -2
- package/schemas/ipfs/mass-id-audit/mass-id-audit.example.json +3 -3
- package/schemas/ipfs/mass-id-audit/mass-id-audit.schema.json +2 -2
- package/schemas/ipfs/methodology/methodology.example.json +3 -3
- package/schemas/ipfs/methodology/methodology.schema.json +2 -2
- package/schemas/ipfs/recycled-id/recycled-id.example.json +4 -4
- package/schemas/ipfs/recycled-id/recycled-id.schema.json +2 -2
- package/schemas/schema-hashes.json +10 -10
package/dist/index.cjs
CHANGED
|
@@ -29481,7 +29481,7 @@ function buildSchemaUrl(schemaPath) {
|
|
|
29481
29481
|
return `${getSchemaBaseUrl()}/${cleanPath}`;
|
|
29482
29482
|
}
|
|
29483
29483
|
function getSchemaVersionOrDefault() {
|
|
29484
|
-
return "0.3.
|
|
29484
|
+
return "0.3.2";
|
|
29485
29485
|
}
|
|
29486
29486
|
|
|
29487
29487
|
// src/shared/schema-validation.ts
|
package/dist/index.js
CHANGED
|
@@ -29475,7 +29475,7 @@ function buildSchemaUrl(schemaPath) {
|
|
|
29475
29475
|
return `${getSchemaBaseUrl()}/${cleanPath}`;
|
|
29476
29476
|
}
|
|
29477
29477
|
function getSchemaVersionOrDefault() {
|
|
29478
|
-
return "0.3.
|
|
29478
|
+
return "0.3.2";
|
|
29479
29479
|
}
|
|
29480
29480
|
|
|
29481
29481
|
// src/shared/schema-validation.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@carrot-foundation/schemas",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"description": "Carrot schema definitions and zod validation schemas",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"private": false,
|
|
@@ -49,27 +49,26 @@
|
|
|
49
49
|
"url": "git+https://github.com/carrot-foundation/schemas.git"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
|
-
"ai:check": "
|
|
53
|
-
"ai:sync": "
|
|
52
|
+
"ai:check": "tsx scripts/check-ai-instructions.ts",
|
|
53
|
+
"ai:sync": "tsx scripts/sync-ai-instructions.ts",
|
|
54
54
|
"build": "tsup",
|
|
55
55
|
"check": "run-s lint:fix format type-check spell-check pkgJsonLint generate-schemas hash-schemas update-examples validate-schemas verify-schema-versions check-refs validate-examples test knip license-check size-limit publint check-types-exports ai:check",
|
|
56
|
-
"check-refs": "
|
|
57
|
-
"check-schema-compat": "
|
|
56
|
+
"check-refs": "tsx scripts/check-refs.ts",
|
|
57
|
+
"check-schema-compat": "tsx scripts/check-schema-compat.ts",
|
|
58
58
|
"check-types-exports": "attw --pack .",
|
|
59
59
|
"check:parallel": "run-p lint:fix format type-check spell-check pkgJsonLint test knip license-check validate-all ai:check",
|
|
60
60
|
"clean": "rm -rf dist",
|
|
61
61
|
"format": "prettier --write .",
|
|
62
62
|
"format:check": "prettier --check .",
|
|
63
|
-
"generate-ipfs-schemas": "
|
|
63
|
+
"generate-ipfs-schemas": "tsx scripts/generate-ipfs-schemas.ts",
|
|
64
64
|
"generate-schemas": "pnpm generate-ipfs-schemas",
|
|
65
|
-
"hash-schemas": "
|
|
65
|
+
"hash-schemas": "tsx scripts/hash-schemas.ts",
|
|
66
66
|
"knip": "knip",
|
|
67
67
|
"license-check": "license-checker --production --onlyAllow 'MIT;ISC;BSD-2-Clause;BSD-3-Clause;Apache-2.0;0BSD'",
|
|
68
68
|
"lint": "eslint . --cache --cache-location .cache/eslint/",
|
|
69
69
|
"lint:fix": "eslint . --fix --cache --cache-location .cache/eslint/",
|
|
70
70
|
"pkgJsonLint": "npmPkgJsonLint .",
|
|
71
71
|
"prebuild": "pnpm clean",
|
|
72
|
-
"pregenerate-ipfs-schemas": "pnpm build",
|
|
73
72
|
"preinstall": "npx only-allow pnpm",
|
|
74
73
|
"prepare": "husky",
|
|
75
74
|
"prepublishOnly": "pnpm build",
|
|
@@ -82,11 +81,11 @@
|
|
|
82
81
|
"test:ui": "vitest --ui",
|
|
83
82
|
"test:watch": "vitest",
|
|
84
83
|
"type-check": "tsc --noEmit",
|
|
85
|
-
"update-examples": "
|
|
84
|
+
"update-examples": "tsx scripts/update-examples.ts",
|
|
86
85
|
"validate-all": "run-s build generate-schemas hash-schemas update-examples validate-schemas verify-schema-versions check-refs validate-examples size-limit publint check-types-exports",
|
|
87
|
-
"validate-examples": "
|
|
88
|
-
"validate-schemas": "
|
|
89
|
-
"verify-schema-versions": "
|
|
86
|
+
"validate-examples": "tsx scripts/validate-schemas.ts --data-only",
|
|
87
|
+
"validate-schemas": "tsx scripts/validate-schemas.ts",
|
|
88
|
+
"verify-schema-versions": "tsx scripts/verify-schema-versions.ts"
|
|
90
89
|
},
|
|
91
90
|
"dependencies": {
|
|
92
91
|
"canonicalize": "2.1.0",
|
|
@@ -132,6 +131,7 @@
|
|
|
132
131
|
"semantic-release": "25.0.3",
|
|
133
132
|
"size-limit": "12.0.1",
|
|
134
133
|
"tsup": "8.5.1",
|
|
134
|
+
"tsx": "4.21.0",
|
|
135
135
|
"typescript": "6.0.2",
|
|
136
136
|
"typescript-eslint": "8.57.2",
|
|
137
137
|
"vitest": "4.1.2"
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/collection/collection.schema.json",
|
|
3
3
|
"schema": {
|
|
4
|
-
"hash": "
|
|
4
|
+
"hash": "2b8e57e70052e5c6b0efbed736e826ece9b002f4b1dd609e4a65fb8abad55e10",
|
|
5
5
|
"type": "Collection",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm"
|
|
8
8
|
},
|
|
9
9
|
"environment": {
|
|
@@ -236,6 +236,6 @@
|
|
|
236
236
|
"additionalProperties": false,
|
|
237
237
|
"title": "Collection IPFS Record",
|
|
238
238
|
"description": "Collection metadata stored in IPFS, extending the base schema with collection-specific fields used to group and organize credit purchases and retirements in Carrot's ecosystem",
|
|
239
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
240
|
-
"version": "0.3.
|
|
239
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/collection/collection.schema.json",
|
|
240
|
+
"version": "0.3.2"
|
|
241
241
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/credit/credit.schema.json",
|
|
3
3
|
"schema": {
|
|
4
|
-
"hash": "
|
|
4
|
+
"hash": "8fb6a9c3dc561609ba63dc538fb4c6c44aa556889f7935df20e67f4ab5b027c0",
|
|
5
5
|
"type": "Credit",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm"
|
|
8
8
|
},
|
|
9
9
|
"environment": {
|
|
@@ -257,6 +257,6 @@
|
|
|
257
257
|
"additionalProperties": false,
|
|
258
258
|
"title": "Credit IPFS Record",
|
|
259
259
|
"description": "Credit token metadata stored in IPFS, extending the base schema with ERC20-specific details",
|
|
260
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
261
|
-
"version": "0.3.
|
|
260
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/credit/credit.schema.json",
|
|
261
|
+
"version": "0.3.2"
|
|
262
262
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/credit-purchase-receipt/credit-purchase-receipt.schema.json",
|
|
3
3
|
"schema": {
|
|
4
|
-
"hash": "
|
|
4
|
+
"hash": "10856eb13bf7451d3b8da53233a62a7cb11236af741e96b6f5794f8a2f636b5d",
|
|
5
5
|
"type": "CreditPurchaseReceipt",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm"
|
|
8
8
|
},
|
|
9
9
|
"environment": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"created_at": "2025-02-03T12:45:30.000Z",
|
|
21
21
|
"external_id": "f1a2b3c4-d5e6-4789-9012-34567890abcd",
|
|
22
22
|
"external_url": "https://explore.carrot.eco/document/f1a2b3c4-d5e6-4789-9012-34567890abcd",
|
|
23
|
-
"audit_data_hash": "
|
|
23
|
+
"audit_data_hash": "d27bdcfbd855a14183a6e7be172455e57a51fd36023f67e1bda53d1585444a85",
|
|
24
24
|
"viewer_reference": {
|
|
25
25
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm",
|
|
26
26
|
"integrity_hash": "87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489"
|
|
@@ -1320,6 +1320,6 @@
|
|
|
1320
1320
|
"additionalProperties": false,
|
|
1321
1321
|
"title": "CreditPurchaseReceipt NFT IPFS Record",
|
|
1322
1322
|
"description": "Complete CreditPurchaseReceipt NFT IPFS record including purchase summary, buyer details, credit breakdowns, certificate allocations, and NFT display attributes",
|
|
1323
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
1324
|
-
"version": "0.3.
|
|
1323
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/credit-purchase-receipt/credit-purchase-receipt.schema.json",
|
|
1324
|
+
"version": "0.3.2"
|
|
1325
1325
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/credit-retirement-receipt/credit-retirement-receipt.schema.json",
|
|
3
3
|
"schema": {
|
|
4
|
-
"hash": "
|
|
4
|
+
"hash": "b35838c01fdc76d6ad73c61838e154d88153744642fa1096aea7a9bbec8948a1",
|
|
5
5
|
"type": "CreditRetirementReceipt",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm"
|
|
8
8
|
},
|
|
9
9
|
"environment": {
|
|
@@ -230,5 +230,5 @@
|
|
|
230
230
|
"smart_contract_address": "0x742d35cc6634c0532925a3b8d8b5c2d4c7f8e1a9"
|
|
231
231
|
}
|
|
232
232
|
},
|
|
233
|
-
"audit_data_hash": "
|
|
233
|
+
"audit_data_hash": "b64448782668109dff2a80cde23c3e7fa54aa48776921f96bfd4617bd778bc85"
|
|
234
234
|
}
|
|
@@ -1444,6 +1444,6 @@
|
|
|
1444
1444
|
"additionalProperties": false,
|
|
1445
1445
|
"title": "CreditRetirementReceipt NFT IPFS Record",
|
|
1446
1446
|
"description": "Complete CreditRetirementReceipt NFT IPFS record including retirement summary, beneficiary and credit holder details, credit breakdowns, certificate allocations, and NFT display attributes",
|
|
1447
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
1448
|
-
"version": "0.3.
|
|
1447
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/credit-retirement-receipt/credit-retirement-receipt.schema.json",
|
|
1448
|
+
"version": "0.3.2"
|
|
1449
1449
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/gas-id/gas-id.schema.json",
|
|
3
3
|
"schema": {
|
|
4
|
-
"hash": "
|
|
4
|
+
"hash": "9f4901c831b2d92ead26839475ac308a69e6fcd3e89b5b768822598a3b4759e2",
|
|
5
5
|
"type": "GasID",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm"
|
|
8
8
|
},
|
|
9
9
|
"environment": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"created_at": "2024-12-08T11:32:47.000Z",
|
|
21
21
|
"external_id": "d2a7f8e4-9c61-4e35-b8f2-a5c9e7d1b4f6",
|
|
22
22
|
"external_url": "https://explore.carrot.eco/document/d2a7f8e4-9c61-4e35-b8f2-a5c9e7d1b4f6",
|
|
23
|
-
"audit_data_hash": "
|
|
23
|
+
"audit_data_hash": "c7acb6fc245a1566eaa15f2ef0a7e9f42c5b15b941a7bb0d326fd462cebf8a66",
|
|
24
24
|
"viewer_reference": {
|
|
25
25
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm",
|
|
26
26
|
"integrity_hash": "87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489"
|
|
@@ -1523,6 +1523,6 @@
|
|
|
1523
1523
|
"additionalProperties": false,
|
|
1524
1524
|
"title": "GasID NFT IPFS Record",
|
|
1525
1525
|
"description": "Complete GasID NFT IPFS record including prevented emissions calculation, source waste provenance, methodology reference, and NFT display attributes",
|
|
1526
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
1527
|
-
"version": "0.3.
|
|
1526
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/gas-id/gas-id.schema.json",
|
|
1527
|
+
"version": "0.3.2"
|
|
1528
1528
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/mass-id/mass-id.schema.json",
|
|
3
3
|
"schema": {
|
|
4
|
-
"hash": "
|
|
4
|
+
"hash": "4c012f50c5d06f5fe5ce5492cd6380f3d350dd2c4d0d11b3376d0daa54e81b0c",
|
|
5
5
|
"type": "MassID",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm"
|
|
8
8
|
},
|
|
9
9
|
"environment": {
|
|
@@ -108,7 +108,7 @@
|
|
|
108
108
|
"display_type": "date"
|
|
109
109
|
}
|
|
110
110
|
],
|
|
111
|
-
"audit_data_hash": "
|
|
111
|
+
"audit_data_hash": "6cdc9b8e5f2f231e14145b732b931b2613b98e9cf0696c92428a2512064cc8ce",
|
|
112
112
|
"data": {
|
|
113
113
|
"waste_properties": {
|
|
114
114
|
"type": "Organic",
|
|
@@ -1912,6 +1912,6 @@
|
|
|
1912
1912
|
"additionalProperties": false,
|
|
1913
1913
|
"title": "MassID NFT IPFS Record",
|
|
1914
1914
|
"description": "Complete MassID NFT IPFS record including waste classification, chain-of-custody lifecycle events, geographic locations, supply-chain participants, and NFT display attributes",
|
|
1915
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
1916
|
-
"version": "0.3.
|
|
1915
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/mass-id/mass-id.schema.json",
|
|
1916
|
+
"version": "0.3.2"
|
|
1917
1917
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/mass-id-audit/mass-id-audit.schema.json",
|
|
3
3
|
"schema": {
|
|
4
|
-
"hash": "
|
|
4
|
+
"hash": "4f4fe072bd12dd4638efa9fe2ce1e3e3ce6cb50d8b0e652d49539616e39a9164",
|
|
5
5
|
"type": "MassID Audit",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm"
|
|
8
8
|
},
|
|
9
9
|
"environment": {
|
|
@@ -674,6 +674,6 @@
|
|
|
674
674
|
"additionalProperties": false,
|
|
675
675
|
"title": "MassID Audit IPFS Record",
|
|
676
676
|
"description": "MassID audit record stored in IPFS, containing methodology reference, audit summary, rule execution results, and links to the source MassID and resulting GasID or RecycledID",
|
|
677
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
678
|
-
"version": "0.3.
|
|
677
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/mass-id-audit/mass-id-audit.schema.json",
|
|
678
|
+
"version": "0.3.2"
|
|
679
679
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/methodology/methodology.schema.json",
|
|
3
3
|
"schema": {
|
|
4
|
-
"hash": "
|
|
4
|
+
"hash": "2485ee92a3266ca8e8b7afd74c2cfe9a61bf35b0ae019db93f3decb95bba8292",
|
|
5
5
|
"type": "Methodology",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm"
|
|
8
8
|
},
|
|
9
9
|
"environment": {
|
|
@@ -369,6 +369,6 @@
|
|
|
369
369
|
"additionalProperties": false,
|
|
370
370
|
"title": "Methodology IPFS Record",
|
|
371
371
|
"description": "Methodology metadata stored in IPFS, defining the environmental impact measurement approach including versioning, documentation, and MassID audit rules",
|
|
372
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
373
|
-
"version": "0.3.
|
|
372
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/methodology/methodology.schema.json",
|
|
373
|
+
"version": "0.3.2"
|
|
374
374
|
}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
|
-
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
2
|
+
"$schema": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/recycled-id/recycled-id.schema.json",
|
|
3
3
|
"schema": {
|
|
4
|
-
"hash": "
|
|
4
|
+
"hash": "c6661d76a3fe5c4f502b1339fe945d053b3217f4371244679caeb21b7fd620ce",
|
|
5
5
|
"type": "RecycledID",
|
|
6
|
-
"version": "0.3.
|
|
6
|
+
"version": "0.3.2",
|
|
7
7
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm"
|
|
8
8
|
},
|
|
9
9
|
"environment": {
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"created_at": "2024-12-08T11:32:47.000Z",
|
|
21
21
|
"external_id": "f47ac10b-58cc-4372-a567-0e02b2c3d489",
|
|
22
22
|
"external_url": "https://explore.carrot.eco/document/f47ac10b-58cc-4372-a567-0e02b2c3d489",
|
|
23
|
-
"audit_data_hash": "
|
|
23
|
+
"audit_data_hash": "8119d78e8f9a81423b9d5745d77701697d1084a4d1fce064ee3ff2c42043a182",
|
|
24
24
|
"viewer_reference": {
|
|
25
25
|
"ipfs_uri": "ipfs://bafybeigdyrztvzl5cceubvaxob7iqh6f3f7s36c74ojav2xsz2uib2g3vm",
|
|
26
26
|
"integrity_hash": "87f633634cc4b02f628685651f0a29b7bfa22a0bd841f725c6772dd00a58d489"
|
|
@@ -1360,6 +1360,6 @@
|
|
|
1360
1360
|
"additionalProperties": false,
|
|
1361
1361
|
"title": "RecycledID NFT IPFS Record",
|
|
1362
1362
|
"description": "Complete RecycledID NFT IPFS record including recycling outcome metrics, source waste provenance, methodology reference, and NFT display attributes",
|
|
1363
|
-
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.
|
|
1364
|
-
"version": "0.3.
|
|
1363
|
+
"$id": "https://raw.githubusercontent.com/carrot-foundation/schemas/refs/tags/0.3.2/schemas/ipfs/recycled-id/recycled-id.schema.json",
|
|
1364
|
+
"version": "0.3.2"
|
|
1365
1365
|
}
|
|
@@ -1,40 +1,40 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.3.
|
|
2
|
+
"version": "0.3.2",
|
|
3
3
|
"schemas": {
|
|
4
4
|
"ipfs/recycled-id/recycled-id.schema.json": {
|
|
5
|
-
"hash": "
|
|
5
|
+
"hash": "c6661d76a3fe5c4f502b1339fe945d053b3217f4371244679caeb21b7fd620ce",
|
|
6
6
|
"path": "ipfs/recycled-id/recycled-id.schema.json"
|
|
7
7
|
},
|
|
8
8
|
"ipfs/methodology/methodology.schema.json": {
|
|
9
|
-
"hash": "
|
|
9
|
+
"hash": "2485ee92a3266ca8e8b7afd74c2cfe9a61bf35b0ae019db93f3decb95bba8292",
|
|
10
10
|
"path": "ipfs/methodology/methodology.schema.json"
|
|
11
11
|
},
|
|
12
12
|
"ipfs/mass-id-audit/mass-id-audit.schema.json": {
|
|
13
|
-
"hash": "
|
|
13
|
+
"hash": "4f4fe072bd12dd4638efa9fe2ce1e3e3ce6cb50d8b0e652d49539616e39a9164",
|
|
14
14
|
"path": "ipfs/mass-id-audit/mass-id-audit.schema.json"
|
|
15
15
|
},
|
|
16
16
|
"ipfs/mass-id/mass-id.schema.json": {
|
|
17
|
-
"hash": "
|
|
17
|
+
"hash": "4c012f50c5d06f5fe5ce5492cd6380f3d350dd2c4d0d11b3376d0daa54e81b0c",
|
|
18
18
|
"path": "ipfs/mass-id/mass-id.schema.json"
|
|
19
19
|
},
|
|
20
20
|
"ipfs/gas-id/gas-id.schema.json": {
|
|
21
|
-
"hash": "
|
|
21
|
+
"hash": "9f4901c831b2d92ead26839475ac308a69e6fcd3e89b5b768822598a3b4759e2",
|
|
22
22
|
"path": "ipfs/gas-id/gas-id.schema.json"
|
|
23
23
|
},
|
|
24
24
|
"ipfs/credit-retirement-receipt/credit-retirement-receipt.schema.json": {
|
|
25
|
-
"hash": "
|
|
25
|
+
"hash": "b35838c01fdc76d6ad73c61838e154d88153744642fa1096aea7a9bbec8948a1",
|
|
26
26
|
"path": "ipfs/credit-retirement-receipt/credit-retirement-receipt.schema.json"
|
|
27
27
|
},
|
|
28
28
|
"ipfs/credit-purchase-receipt/credit-purchase-receipt.schema.json": {
|
|
29
|
-
"hash": "
|
|
29
|
+
"hash": "10856eb13bf7451d3b8da53233a62a7cb11236af741e96b6f5794f8a2f636b5d",
|
|
30
30
|
"path": "ipfs/credit-purchase-receipt/credit-purchase-receipt.schema.json"
|
|
31
31
|
},
|
|
32
32
|
"ipfs/credit/credit.schema.json": {
|
|
33
|
-
"hash": "
|
|
33
|
+
"hash": "8fb6a9c3dc561609ba63dc538fb4c6c44aa556889f7935df20e67f4ab5b027c0",
|
|
34
34
|
"path": "ipfs/credit/credit.schema.json"
|
|
35
35
|
},
|
|
36
36
|
"ipfs/collection/collection.schema.json": {
|
|
37
|
-
"hash": "
|
|
37
|
+
"hash": "2b8e57e70052e5c6b0efbed736e826ece9b002f4b1dd609e4a65fb8abad55e10",
|
|
38
38
|
"path": "ipfs/collection/collection.schema.json"
|
|
39
39
|
}
|
|
40
40
|
}
|