@openvtc/trust-tasks 0.12.8 → 0.12.9

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.
@@ -14,12 +14,34 @@ export interface VTCCommunityProfileUpdatePayload {
14
14
  * Set the community's declared relationship-identifier default. See `CommunityProfile.relationshipIdentifierDefault` in the `vtc/_shared/0.1/community` schema. Omit to leave it unchanged.
15
15
  */
16
16
  relationshipIdentifierDefault?: "attributed" | "pairwise";
17
+ personhood?: PersonhoodGovernance;
17
18
  /**
18
19
  * Opaque community-defined extension bag (maintainer-capped).
19
20
  */
20
21
  extensions?: {};
21
22
  ext?: Ext;
22
23
  }
24
+ /**
25
+ * Set the community's published personhood position. See `CommunityProfile.personhood` in the `vtc/_shared/0.1/community` schema. Replaces the whole object — a partial update would leave a verifier unable to tell an unset member from a cleared one. Omit to leave it unchanged.
26
+ */
27
+ export interface PersonhoodGovernance {
28
+ /**
29
+ * Governance requires that members are real humans. Defaults to `false` when absent: a community that has not considered the question asserts nothing, which is the only safe default for a claim a verifier may rely on.
30
+ */
31
+ realHuman?: boolean;
32
+ /**
33
+ * Governance requires that each person holds at most one membership in **this** community. Per-community by definition — the glossary says "exactly one membership in that VTC" — so a single community can satisfy it without any network above it.
34
+ */
35
+ singleMembership?: boolean;
36
+ /**
37
+ * DIDs of the identity-verification providers whose credentials this community accepts as personhood evidence. A community that vets its own members in person lists its own community DID here — it is acting as its own IDVP, which §IDVC permits. An empty list means no list has been published, not that everything is accepted.
38
+ */
39
+ acceptedIdvps?: string[];
40
+ /**
41
+ * Where the governance framework these assertions refer to can be read.
42
+ */
43
+ governanceFrameworkUrl?: string | null;
44
+ }
23
45
  /**
24
46
  * Vendor-namespaced extension object per SPEC.md §4.5.1. Each immediate key MUST be a reverse-DNS namespace; structure under each namespace is opaque to the framework.
25
47
  */
@@ -53,6 +75,28 @@ export interface CommunityProfile {
53
75
  * Trust-registry reachability. Populated on reads; not settable.
54
76
  */
55
77
  registryStatus?: "active" | "degraded";
78
+ personhood?: PersonhoodGovernance1;
79
+ }
80
+ /**
81
+ * What this community's governance asserts about the personhood of its members.
82
+ */
83
+ export interface PersonhoodGovernance1 {
84
+ /**
85
+ * Governance requires that members are real humans. Defaults to `false` when absent: a community that has not considered the question asserts nothing, which is the only safe default for a claim a verifier may rely on.
86
+ */
87
+ realHuman?: boolean;
88
+ /**
89
+ * Governance requires that each person holds at most one membership in **this** community. Per-community by definition — the glossary says "exactly one membership in that VTC" — so a single community can satisfy it without any network above it.
90
+ */
91
+ singleMembership?: boolean;
92
+ /**
93
+ * DIDs of the identity-verification providers whose credentials this community accepts as personhood evidence. A community that vets its own members in person lists its own community DID here — it is acting as its own IDVP, which §IDVC permits. An empty list means no list has been published, not that everything is accepted.
94
+ */
95
+ acceptedIdvps?: string[];
96
+ /**
97
+ * Where the governance framework these assertions refer to can be read.
98
+ */
99
+ governanceFrameworkUrl?: string | null;
56
100
  }
57
101
 
58
102
  /** Trust Task type URI. */
@@ -120,6 +164,10 @@ export const PAYLOAD_SCHEMA = {
120
164
  ],
121
165
  "description": "Set the community's declared relationship-identifier default. See `CommunityProfile.relationshipIdentifierDefault` in the `vtc/_shared/0.1/community` schema. Omit to leave it unchanged."
122
166
  },
167
+ "personhood": {
168
+ "$ref": "#/$defs/PersonhoodGovernance",
169
+ "description": "Set the community's published personhood position. See `CommunityProfile.personhood` in the `vtc/_shared/0.1/community` schema. Replaces the whole object — a partial update would leave a verifier unable to tell an unset member from a cleared one. Omit to leave it unchanged."
170
+ },
123
171
  "extensions": {
124
172
  "type": "object",
125
173
  "description": "Opaque community-defined extension bag (maintainer-capped)."
@@ -221,6 +269,42 @@ export const PAYLOAD_SCHEMA = {
221
269
  "degraded"
222
270
  ],
223
271
  "description": "Trust-registry reachability. Populated on reads; not settable."
272
+ },
273
+ "personhood": {
274
+ "$ref": "#/$defs/PersonhoodGovernance",
275
+ "description": "What this community's governance asserts about the personhood of its members."
276
+ }
277
+ }
278
+ },
279
+ "PersonhoodGovernance": {
280
+ "$anchor": "personhoodGovernance",
281
+ "title": "PersonhoodGovernance",
282
+ "type": "object",
283
+ "additionalProperties": false,
284
+ "description": "A community's published position on personhood.\n\nDTG Credentials §Personhood Credentials places PHC status here rather than in the credential — \"PHC status is determined by governance and trust registries, not by credential structure\" — so a verifier deciding whether a VMC carries personhood weight reads this, not the credential's type array. §Governance Considerations item 1 makes the acceptable-IDVP list the community's to define and publish.\n\nEvery member is a declaration, not an enforcement: what a community actually accepts is decided by its own policy. Absent means the community has not published a position, which is not the same as asserting the negative.",
285
+ "properties": {
286
+ "realHuman": {
287
+ "type": "boolean",
288
+ "description": "Governance requires that members are real humans. Defaults to `false` when absent: a community that has not considered the question asserts nothing, which is the only safe default for a claim a verifier may rely on."
289
+ },
290
+ "singleMembership": {
291
+ "type": "boolean",
292
+ "description": "Governance requires that each person holds at most one membership in **this** community. Per-community by definition — the glossary says \"exactly one membership in that VTC\" — so a single community can satisfy it without any network above it."
293
+ },
294
+ "acceptedIdvps": {
295
+ "type": "array",
296
+ "items": {
297
+ "type": "string",
298
+ "minLength": 1
299
+ },
300
+ "description": "DIDs of the identity-verification providers whose credentials this community accepts as personhood evidence. A community that vets its own members in person lists its own community DID here — it is acting as its own IDVP, which §IDVC permits. An empty list means no list has been published, not that everything is accepted."
301
+ },
302
+ "governanceFrameworkUrl": {
303
+ "type": [
304
+ "string",
305
+ "null"
306
+ ],
307
+ "description": "Where the governance framework these assertions refer to can be read."
224
308
  }
225
309
  }
226
310
  }
@@ -324,6 +408,42 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
324
408
  "degraded"
325
409
  ],
326
410
  "description": "Trust-registry reachability. Populated on reads; not settable."
411
+ },
412
+ "personhood": {
413
+ "$ref": "#/$defs/PersonhoodGovernance",
414
+ "description": "What this community's governance asserts about the personhood of its members."
415
+ }
416
+ }
417
+ },
418
+ "PersonhoodGovernance": {
419
+ "$anchor": "personhoodGovernance",
420
+ "title": "PersonhoodGovernance",
421
+ "type": "object",
422
+ "additionalProperties": false,
423
+ "description": "A community's published position on personhood.\n\nDTG Credentials §Personhood Credentials places PHC status here rather than in the credential — \"PHC status is determined by governance and trust registries, not by credential structure\" — so a verifier deciding whether a VMC carries personhood weight reads this, not the credential's type array. §Governance Considerations item 1 makes the acceptable-IDVP list the community's to define and publish.\n\nEvery member is a declaration, not an enforcement: what a community actually accepts is decided by its own policy. Absent means the community has not published a position, which is not the same as asserting the negative.",
424
+ "properties": {
425
+ "realHuman": {
426
+ "type": "boolean",
427
+ "description": "Governance requires that members are real humans. Defaults to `false` when absent: a community that has not considered the question asserts nothing, which is the only safe default for a claim a verifier may rely on."
428
+ },
429
+ "singleMembership": {
430
+ "type": "boolean",
431
+ "description": "Governance requires that each person holds at most one membership in **this** community. Per-community by definition — the glossary says \"exactly one membership in that VTC\" — so a single community can satisfy it without any network above it."
432
+ },
433
+ "acceptedIdvps": {
434
+ "type": "array",
435
+ "items": {
436
+ "type": "string",
437
+ "minLength": 1
438
+ },
439
+ "description": "DIDs of the identity-verification providers whose credentials this community accepts as personhood evidence. A community that vets its own members in person lists its own community DID here — it is acting as its own IDVP, which §IDVC permits. An empty list means no list has been published, not that everything is accepted."
440
+ },
441
+ "governanceFrameworkUrl": {
442
+ "type": [
443
+ "string",
444
+ "null"
445
+ ],
446
+ "description": "Where the governance framework these assertions refer to can be read."
327
447
  }
328
448
  }
329
449
  }
@@ -61,6 +61,7 @@ export interface CommunityProfileSnapshot {
61
61
  * The community's declared relationship-identifier default, as defined on `CommunityProfile` in the `vtc/_shared/0.1/community` schema. Carried in a config export so a restore reproduces the declaration rather than silently reverting it to the implementation default.
62
62
  */
63
63
  relationshipIdentifierDefault?: "attributed" | "pairwise";
64
+ personhood?: PersonhoodGovernance;
64
65
  /**
65
66
  * Opaque community-defined extension bag.
66
67
  */
@@ -70,6 +71,27 @@ export interface CommunityProfileSnapshot {
70
71
  */
71
72
  createdAt?: string;
72
73
  }
74
+ /**
75
+ * The community's published personhood position, carried so an export restores it. Governance state, not runtime state — unlike `registryStatus`, which is deliberately absent here because reachability belongs to a running maintainer rather than to exported state.
76
+ */
77
+ export interface PersonhoodGovernance {
78
+ /**
79
+ * Governance requires that members are real humans. Defaults to `false` when absent: a community that has not considered the question asserts nothing, which is the only safe default for a claim a verifier may rely on.
80
+ */
81
+ realHuman?: boolean;
82
+ /**
83
+ * Governance requires that each person holds at most one membership in **this** community. Per-community by definition — the glossary says "exactly one membership in that VTC" — so a single community can satisfy it without any network above it.
84
+ */
85
+ singleMembership?: boolean;
86
+ /**
87
+ * DIDs of the identity-verification providers whose credentials this community accepts as personhood evidence. A community that vets its own members in person lists its own community DID here — it is acting as its own IDVP, which §IDVC permits. An empty list means no list has been published, not that everything is accepted.
88
+ */
89
+ acceptedIdvps?: string[];
90
+ /**
91
+ * Where the governance framework these assertions refer to can be read.
92
+ */
93
+ governanceFrameworkUrl?: string | null;
94
+ }
73
95
 
74
96
  /** Trust Task type URI. */
75
97
  export const TYPE_URI = "https://trusttasks.org/spec/vtc/config/export/0.1" as const;
@@ -224,6 +246,10 @@ export const PAYLOAD_SCHEMA = {
224
246
  ],
225
247
  "description": "The community's declared relationship-identifier default, as defined on `CommunityProfile` in the `vtc/_shared/0.1/community` schema. Carried in a config export so a restore reproduces the declaration rather than silently reverting it to the implementation default."
226
248
  },
249
+ "personhood": {
250
+ "$ref": "#/$defs/PersonhoodGovernance",
251
+ "description": "The community's published personhood position, carried so an export restores it. Governance state, not runtime state — unlike `registryStatus`, which is deliberately absent here because reachability belongs to a running maintainer rather than to exported state."
252
+ },
227
253
  "extensions": {
228
254
  "type": "object",
229
255
  "description": "Opaque community-defined extension bag."
@@ -234,6 +260,38 @@ export const PAYLOAD_SCHEMA = {
234
260
  "description": "When the community was created. Provenance only — an import never writes it."
235
261
  }
236
262
  }
263
+ },
264
+ "PersonhoodGovernance": {
265
+ "$anchor": "personhoodGovernance",
266
+ "title": "PersonhoodGovernance",
267
+ "type": "object",
268
+ "additionalProperties": false,
269
+ "description": "A community's published position on personhood.\n\nDTG Credentials §Personhood Credentials places PHC status here rather than in the credential — \"PHC status is determined by governance and trust registries, not by credential structure\" — so a verifier deciding whether a VMC carries personhood weight reads this, not the credential's type array. §Governance Considerations item 1 makes the acceptable-IDVP list the community's to define and publish.\n\nEvery member is a declaration, not an enforcement: what a community actually accepts is decided by its own policy. Absent means the community has not published a position, which is not the same as asserting the negative.",
270
+ "properties": {
271
+ "realHuman": {
272
+ "type": "boolean",
273
+ "description": "Governance requires that members are real humans. Defaults to `false` when absent: a community that has not considered the question asserts nothing, which is the only safe default for a claim a verifier may rely on."
274
+ },
275
+ "singleMembership": {
276
+ "type": "boolean",
277
+ "description": "Governance requires that each person holds at most one membership in **this** community. Per-community by definition — the glossary says \"exactly one membership in that VTC\" — so a single community can satisfy it without any network above it."
278
+ },
279
+ "acceptedIdvps": {
280
+ "type": "array",
281
+ "items": {
282
+ "type": "string",
283
+ "minLength": 1
284
+ },
285
+ "description": "DIDs of the identity-verification providers whose credentials this community accepts as personhood evidence. A community that vets its own members in person lists its own community DID here — it is acting as its own IDVP, which §IDVC permits. An empty list means no list has been published, not that everything is accepted."
286
+ },
287
+ "governanceFrameworkUrl": {
288
+ "type": [
289
+ "string",
290
+ "null"
291
+ ],
292
+ "description": "Where the governance framework these assertions refer to can be read."
293
+ }
294
+ }
237
295
  }
238
296
  }
239
297
  } as const;
@@ -362,6 +420,10 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
362
420
  ],
363
421
  "description": "The community's declared relationship-identifier default, as defined on `CommunityProfile` in the `vtc/_shared/0.1/community` schema. Carried in a config export so a restore reproduces the declaration rather than silently reverting it to the implementation default."
364
422
  },
423
+ "personhood": {
424
+ "$ref": "#/$defs/PersonhoodGovernance",
425
+ "description": "The community's published personhood position, carried so an export restores it. Governance state, not runtime state — unlike `registryStatus`, which is deliberately absent here because reachability belongs to a running maintainer rather than to exported state."
426
+ },
365
427
  "extensions": {
366
428
  "type": "object",
367
429
  "description": "Opaque community-defined extension bag."
@@ -372,6 +434,38 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
372
434
  "description": "When the community was created. Provenance only — an import never writes it."
373
435
  }
374
436
  }
437
+ },
438
+ "PersonhoodGovernance": {
439
+ "$anchor": "personhoodGovernance",
440
+ "title": "PersonhoodGovernance",
441
+ "type": "object",
442
+ "additionalProperties": false,
443
+ "description": "A community's published position on personhood.\n\nDTG Credentials §Personhood Credentials places PHC status here rather than in the credential — \"PHC status is determined by governance and trust registries, not by credential structure\" — so a verifier deciding whether a VMC carries personhood weight reads this, not the credential's type array. §Governance Considerations item 1 makes the acceptable-IDVP list the community's to define and publish.\n\nEvery member is a declaration, not an enforcement: what a community actually accepts is decided by its own policy. Absent means the community has not published a position, which is not the same as asserting the negative.",
444
+ "properties": {
445
+ "realHuman": {
446
+ "type": "boolean",
447
+ "description": "Governance requires that members are real humans. Defaults to `false` when absent: a community that has not considered the question asserts nothing, which is the only safe default for a claim a verifier may rely on."
448
+ },
449
+ "singleMembership": {
450
+ "type": "boolean",
451
+ "description": "Governance requires that each person holds at most one membership in **this** community. Per-community by definition — the glossary says \"exactly one membership in that VTC\" — so a single community can satisfy it without any network above it."
452
+ },
453
+ "acceptedIdvps": {
454
+ "type": "array",
455
+ "items": {
456
+ "type": "string",
457
+ "minLength": 1
458
+ },
459
+ "description": "DIDs of the identity-verification providers whose credentials this community accepts as personhood evidence. A community that vets its own members in person lists its own community DID here — it is acting as its own IDVP, which §IDVC permits. An empty list means no list has been published, not that everything is accepted."
460
+ },
461
+ "governanceFrameworkUrl": {
462
+ "type": [
463
+ "string",
464
+ "null"
465
+ ],
466
+ "description": "Where the governance framework these assertions refer to can be read."
467
+ }
468
+ }
375
469
  }
376
470
  }
377
471
  } as const;
@@ -56,6 +56,7 @@ export interface CommunityProfileSnapshot {
56
56
  * The community's declared relationship-identifier default, as defined on `CommunityProfile` in the `vtc/_shared/0.1/community` schema. Carried in a config export so a restore reproduces the declaration rather than silently reverting it to the implementation default.
57
57
  */
58
58
  relationshipIdentifierDefault?: "attributed" | "pairwise";
59
+ personhood?: PersonhoodGovernance;
59
60
  /**
60
61
  * Opaque community-defined extension bag.
61
62
  */
@@ -65,6 +66,27 @@ export interface CommunityProfileSnapshot {
65
66
  */
66
67
  createdAt?: string;
67
68
  }
69
+ /**
70
+ * The community's published personhood position, carried so an export restores it. Governance state, not runtime state — unlike `registryStatus`, which is deliberately absent here because reachability belongs to a running maintainer rather than to exported state.
71
+ */
72
+ export interface PersonhoodGovernance {
73
+ /**
74
+ * Governance requires that members are real humans. Defaults to `false` when absent: a community that has not considered the question asserts nothing, which is the only safe default for a claim a verifier may rely on.
75
+ */
76
+ realHuman?: boolean;
77
+ /**
78
+ * Governance requires that each person holds at most one membership in **this** community. Per-community by definition — the glossary says "exactly one membership in that VTC" — so a single community can satisfy it without any network above it.
79
+ */
80
+ singleMembership?: boolean;
81
+ /**
82
+ * DIDs of the identity-verification providers whose credentials this community accepts as personhood evidence. A community that vets its own members in person lists its own community DID here — it is acting as its own IDVP, which §IDVC permits. An empty list means no list has been published, not that everything is accepted.
83
+ */
84
+ acceptedIdvps?: string[];
85
+ /**
86
+ * Where the governance framework these assertions refer to can be read.
87
+ */
88
+ governanceFrameworkUrl?: string | null;
89
+ }
68
90
  /**
69
91
  * Vendor-namespaced extension object per SPEC.md §4.5.1. Each immediate key MUST be a reverse-DNS namespace; structure under each namespace is opaque to the framework.
70
92
  */
@@ -375,6 +397,10 @@ export const PAYLOAD_SCHEMA = {
375
397
  ],
376
398
  "description": "The community's declared relationship-identifier default, as defined on `CommunityProfile` in the `vtc/_shared/0.1/community` schema. Carried in a config export so a restore reproduces the declaration rather than silently reverting it to the implementation default."
377
399
  },
400
+ "personhood": {
401
+ "$ref": "#/$defs/PersonhoodGovernance",
402
+ "description": "The community's published personhood position, carried so an export restores it. Governance state, not runtime state — unlike `registryStatus`, which is deliberately absent here because reachability belongs to a running maintainer rather than to exported state."
403
+ },
378
404
  "extensions": {
379
405
  "type": "object",
380
406
  "description": "Opaque community-defined extension bag."
@@ -385,6 +411,38 @@ export const PAYLOAD_SCHEMA = {
385
411
  "description": "When the community was created. Provenance only — an import never writes it."
386
412
  }
387
413
  }
414
+ },
415
+ "PersonhoodGovernance": {
416
+ "$anchor": "personhoodGovernance",
417
+ "title": "PersonhoodGovernance",
418
+ "type": "object",
419
+ "additionalProperties": false,
420
+ "description": "A community's published position on personhood.\n\nDTG Credentials §Personhood Credentials places PHC status here rather than in the credential — \"PHC status is determined by governance and trust registries, not by credential structure\" — so a verifier deciding whether a VMC carries personhood weight reads this, not the credential's type array. §Governance Considerations item 1 makes the acceptable-IDVP list the community's to define and publish.\n\nEvery member is a declaration, not an enforcement: what a community actually accepts is decided by its own policy. Absent means the community has not published a position, which is not the same as asserting the negative.",
421
+ "properties": {
422
+ "realHuman": {
423
+ "type": "boolean",
424
+ "description": "Governance requires that members are real humans. Defaults to `false` when absent: a community that has not considered the question asserts nothing, which is the only safe default for a claim a verifier may rely on."
425
+ },
426
+ "singleMembership": {
427
+ "type": "boolean",
428
+ "description": "Governance requires that each person holds at most one membership in **this** community. Per-community by definition — the glossary says \"exactly one membership in that VTC\" — so a single community can satisfy it without any network above it."
429
+ },
430
+ "acceptedIdvps": {
431
+ "type": "array",
432
+ "items": {
433
+ "type": "string",
434
+ "minLength": 1
435
+ },
436
+ "description": "DIDs of the identity-verification providers whose credentials this community accepts as personhood evidence. A community that vets its own members in person lists its own community DID here — it is acting as its own IDVP, which §IDVC permits. An empty list means no list has been published, not that everything is accepted."
437
+ },
438
+ "governanceFrameworkUrl": {
439
+ "type": [
440
+ "string",
441
+ "null"
442
+ ],
443
+ "description": "Where the governance framework these assertions refer to can be read."
444
+ }
445
+ }
388
446
  }
389
447
  }
390
448
  } as const;
@@ -595,6 +653,10 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
595
653
  ],
596
654
  "description": "The community's declared relationship-identifier default, as defined on `CommunityProfile` in the `vtc/_shared/0.1/community` schema. Carried in a config export so a restore reproduces the declaration rather than silently reverting it to the implementation default."
597
655
  },
656
+ "personhood": {
657
+ "$ref": "#/$defs/PersonhoodGovernance",
658
+ "description": "The community's published personhood position, carried so an export restores it. Governance state, not runtime state — unlike `registryStatus`, which is deliberately absent here because reachability belongs to a running maintainer rather than to exported state."
659
+ },
598
660
  "extensions": {
599
661
  "type": "object",
600
662
  "description": "Opaque community-defined extension bag."
@@ -605,6 +667,38 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
605
667
  "description": "When the community was created. Provenance only — an import never writes it."
606
668
  }
607
669
  }
670
+ },
671
+ "PersonhoodGovernance": {
672
+ "$anchor": "personhoodGovernance",
673
+ "title": "PersonhoodGovernance",
674
+ "type": "object",
675
+ "additionalProperties": false,
676
+ "description": "A community's published position on personhood.\n\nDTG Credentials §Personhood Credentials places PHC status here rather than in the credential — \"PHC status is determined by governance and trust registries, not by credential structure\" — so a verifier deciding whether a VMC carries personhood weight reads this, not the credential's type array. §Governance Considerations item 1 makes the acceptable-IDVP list the community's to define and publish.\n\nEvery member is a declaration, not an enforcement: what a community actually accepts is decided by its own policy. Absent means the community has not published a position, which is not the same as asserting the negative.",
677
+ "properties": {
678
+ "realHuman": {
679
+ "type": "boolean",
680
+ "description": "Governance requires that members are real humans. Defaults to `false` when absent: a community that has not considered the question asserts nothing, which is the only safe default for a claim a verifier may rely on."
681
+ },
682
+ "singleMembership": {
683
+ "type": "boolean",
684
+ "description": "Governance requires that each person holds at most one membership in **this** community. Per-community by definition — the glossary says \"exactly one membership in that VTC\" — so a single community can satisfy it without any network above it."
685
+ },
686
+ "acceptedIdvps": {
687
+ "type": "array",
688
+ "items": {
689
+ "type": "string",
690
+ "minLength": 1
691
+ },
692
+ "description": "DIDs of the identity-verification providers whose credentials this community accepts as personhood evidence. A community that vets its own members in person lists its own community DID here — it is acting as its own IDVP, which §IDVC permits. An empty list means no list has been published, not that everything is accepted."
693
+ },
694
+ "governanceFrameworkUrl": {
695
+ "type": [
696
+ "string",
697
+ "null"
698
+ ],
699
+ "description": "Where the governance framework these assertions refer to can be read."
700
+ }
701
+ }
608
702
  }
609
703
  }
610
704
  } as const;