@openvtc/trust-tasks 0.12.7 → 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.
- package/dist/vtc/community/profile/show/0.1/payload.d.ts +154 -0
- package/dist/vtc/community/profile/show/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/community/profile/show/0.1/payload.js +72 -0
- package/dist/vtc/community/profile/show/0.1/payload.js.map +1 -1
- package/dist/vtc/community/profile/update/0.1/payload.d.ts +184 -0
- package/dist/vtc/community/profile/update/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/community/profile/update/0.1/payload.js +76 -0
- package/dist/vtc/community/profile/update/0.1/payload.js.map +1 -1
- package/dist/vtc/config/export/0.1/payload.d.ts +154 -0
- package/dist/vtc/config/export/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/config/export/0.1/payload.js +72 -0
- package/dist/vtc/config/export/0.1/payload.js.map +1 -1
- package/dist/vtc/config/import/0.1/payload.d.ts +154 -0
- package/dist/vtc/config/import/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/config/import/0.1/payload.js +72 -0
- package/dist/vtc/config/import/0.1/payload.js.map +1 -1
- package/dist/vtc/endorsement-types/list/0.1/payload.d.ts +20 -0
- package/dist/vtc/endorsement-types/list/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/endorsement-types/list/0.1/payload.js +8 -0
- package/dist/vtc/endorsement-types/list/0.1/payload.js.map +1 -1
- package/dist/vtc/endorsement-types/register/0.1/payload.d.ts +20 -0
- package/dist/vtc/endorsement-types/register/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/endorsement-types/register/0.1/payload.js +8 -0
- package/dist/vtc/endorsement-types/register/0.1/payload.js.map +1 -1
- package/dist/vtc/join-requests/decide/0.1/payload.d.ts +42 -0
- package/dist/vtc/join-requests/decide/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/join-requests/decide/0.1/payload.js +28 -0
- package/dist/vtc/join-requests/decide/0.1/payload.js.map +1 -1
- package/dist/vtc/members/list/0.1/payload.d.ts +108 -0
- package/dist/vtc/members/list/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/members/list/0.1/payload.js +62 -0
- package/dist/vtc/members/list/0.1/payload.js.map +1 -1
- package/dist/vtc/members/show/0.1/payload.d.ts +108 -0
- package/dist/vtc/members/show/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/members/show/0.1/payload.js +62 -0
- package/dist/vtc/members/show/0.1/payload.js.map +1 -1
- package/dist/vtc/members/update/0.1/payload.d.ts +120 -0
- package/dist/vtc/members/update/0.1/payload.d.ts.map +1 -1
- package/dist/vtc/members/update/0.1/payload.js +69 -0
- package/dist/vtc/members/update/0.1/payload.js.map +1 -1
- package/package.json +1 -1
- package/src/vtc/community/profile/show/0.1/payload.ts +94 -0
- package/src/vtc/community/profile/update/0.1/payload.ts +120 -0
- package/src/vtc/config/export/0.1/payload.ts +94 -0
- package/src/vtc/config/import/0.1/payload.ts +94 -0
- package/src/vtc/endorsement-types/list/0.1/payload.ts +12 -0
- package/src/vtc/endorsement-types/register/0.1/payload.ts +12 -0
- package/src/vtc/join-requests/decide/0.1/payload.ts +38 -0
- package/src/vtc/members/list/0.1/payload.ts +82 -0
- package/src/vtc/members/show/0.1/payload.ts +82 -0
- package/src/vtc/members/update/0.1/payload.ts +93 -0
|
@@ -73,6 +73,26 @@ export interface MemberResponse {
|
|
|
73
73
|
* Id of the member's current role Verifiable Endorsement Credential, if issued.
|
|
74
74
|
*/
|
|
75
75
|
currentRoleVecId?: string | null;
|
|
76
|
+
/**
|
|
77
|
+
* Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.
|
|
78
|
+
*/
|
|
79
|
+
personhood?: boolean;
|
|
80
|
+
/**
|
|
81
|
+
* When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.
|
|
82
|
+
*/
|
|
83
|
+
personhoodAssertedAt?: string | null;
|
|
84
|
+
/**
|
|
85
|
+
* Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.
|
|
86
|
+
*/
|
|
87
|
+
joinedViaInvitation?: boolean;
|
|
88
|
+
/**
|
|
89
|
+
* `id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.
|
|
90
|
+
*/
|
|
91
|
+
memberVmcId?: string | null;
|
|
92
|
+
/**
|
|
93
|
+
* When that reciprocal credential was received. Paired with `memberVmcId`.
|
|
94
|
+
*/
|
|
95
|
+
memberVmcReceivedAt?: string | null;
|
|
76
96
|
/**
|
|
77
97
|
* Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).
|
|
78
98
|
*/
|
|
@@ -242,6 +262,37 @@ export const PAYLOAD_SCHEMA = {
|
|
|
242
262
|
],
|
|
243
263
|
"description": "Id of the member's current role Verifiable Endorsement Credential, if issued."
|
|
244
264
|
},
|
|
265
|
+
"personhood": {
|
|
266
|
+
"type": "boolean",
|
|
267
|
+
"description": "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision."
|
|
268
|
+
},
|
|
269
|
+
"personhoodAssertedAt": {
|
|
270
|
+
"type": [
|
|
271
|
+
"string",
|
|
272
|
+
"null"
|
|
273
|
+
],
|
|
274
|
+
"format": "date-time",
|
|
275
|
+
"description": "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag."
|
|
276
|
+
},
|
|
277
|
+
"joinedViaInvitation": {
|
|
278
|
+
"type": "boolean",
|
|
279
|
+
"description": "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart."
|
|
280
|
+
},
|
|
281
|
+
"memberVmcId": {
|
|
282
|
+
"type": [
|
|
283
|
+
"string",
|
|
284
|
+
"null"
|
|
285
|
+
],
|
|
286
|
+
"description": "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here."
|
|
287
|
+
},
|
|
288
|
+
"memberVmcReceivedAt": {
|
|
289
|
+
"type": [
|
|
290
|
+
"string",
|
|
291
|
+
"null"
|
|
292
|
+
],
|
|
293
|
+
"format": "date-time",
|
|
294
|
+
"description": "When that reciprocal credential was received. Paired with `memberVmcId`."
|
|
295
|
+
},
|
|
245
296
|
"extensions": {
|
|
246
297
|
"type": "object",
|
|
247
298
|
"description": "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation)."
|
|
@@ -371,6 +422,37 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
|
|
|
371
422
|
],
|
|
372
423
|
"description": "Id of the member's current role Verifiable Endorsement Credential, if issued."
|
|
373
424
|
},
|
|
425
|
+
"personhood": {
|
|
426
|
+
"type": "boolean",
|
|
427
|
+
"description": "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision."
|
|
428
|
+
},
|
|
429
|
+
"personhoodAssertedAt": {
|
|
430
|
+
"type": [
|
|
431
|
+
"string",
|
|
432
|
+
"null"
|
|
433
|
+
],
|
|
434
|
+
"format": "date-time",
|
|
435
|
+
"description": "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag."
|
|
436
|
+
},
|
|
437
|
+
"joinedViaInvitation": {
|
|
438
|
+
"type": "boolean",
|
|
439
|
+
"description": "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart."
|
|
440
|
+
},
|
|
441
|
+
"memberVmcId": {
|
|
442
|
+
"type": [
|
|
443
|
+
"string",
|
|
444
|
+
"null"
|
|
445
|
+
],
|
|
446
|
+
"description": "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here."
|
|
447
|
+
},
|
|
448
|
+
"memberVmcReceivedAt": {
|
|
449
|
+
"type": [
|
|
450
|
+
"string",
|
|
451
|
+
"null"
|
|
452
|
+
],
|
|
453
|
+
"format": "date-time",
|
|
454
|
+
"description": "When that reciprocal credential was received. Paired with `memberVmcId`."
|
|
455
|
+
},
|
|
374
456
|
"extensions": {
|
|
375
457
|
"type": "object",
|
|
376
458
|
"description": "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation)."
|
|
@@ -57,6 +57,26 @@ export interface MemberResponse {
|
|
|
57
57
|
* Id of the member's current role Verifiable Endorsement Credential, if issued.
|
|
58
58
|
*/
|
|
59
59
|
currentRoleVecId?: string | null;
|
|
60
|
+
/**
|
|
61
|
+
* Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.
|
|
62
|
+
*/
|
|
63
|
+
personhood?: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.
|
|
66
|
+
*/
|
|
67
|
+
personhoodAssertedAt?: string | null;
|
|
68
|
+
/**
|
|
69
|
+
* Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.
|
|
70
|
+
*/
|
|
71
|
+
joinedViaInvitation?: boolean;
|
|
72
|
+
/**
|
|
73
|
+
* `id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.
|
|
74
|
+
*/
|
|
75
|
+
memberVmcId?: string | null;
|
|
76
|
+
/**
|
|
77
|
+
* When that reciprocal credential was received. Paired with `memberVmcId`.
|
|
78
|
+
*/
|
|
79
|
+
memberVmcReceivedAt?: string | null;
|
|
60
80
|
/**
|
|
61
81
|
* Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).
|
|
62
82
|
*/
|
|
@@ -202,6 +222,37 @@ export const PAYLOAD_SCHEMA = {
|
|
|
202
222
|
],
|
|
203
223
|
"description": "Id of the member's current role Verifiable Endorsement Credential, if issued."
|
|
204
224
|
},
|
|
225
|
+
"personhood": {
|
|
226
|
+
"type": "boolean",
|
|
227
|
+
"description": "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision."
|
|
228
|
+
},
|
|
229
|
+
"personhoodAssertedAt": {
|
|
230
|
+
"type": [
|
|
231
|
+
"string",
|
|
232
|
+
"null"
|
|
233
|
+
],
|
|
234
|
+
"format": "date-time",
|
|
235
|
+
"description": "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag."
|
|
236
|
+
},
|
|
237
|
+
"joinedViaInvitation": {
|
|
238
|
+
"type": "boolean",
|
|
239
|
+
"description": "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart."
|
|
240
|
+
},
|
|
241
|
+
"memberVmcId": {
|
|
242
|
+
"type": [
|
|
243
|
+
"string",
|
|
244
|
+
"null"
|
|
245
|
+
],
|
|
246
|
+
"description": "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here."
|
|
247
|
+
},
|
|
248
|
+
"memberVmcReceivedAt": {
|
|
249
|
+
"type": [
|
|
250
|
+
"string",
|
|
251
|
+
"null"
|
|
252
|
+
],
|
|
253
|
+
"format": "date-time",
|
|
254
|
+
"description": "When that reciprocal credential was received. Paired with `memberVmcId`."
|
|
255
|
+
},
|
|
205
256
|
"extensions": {
|
|
206
257
|
"type": "object",
|
|
207
258
|
"description": "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation)."
|
|
@@ -314,6 +365,37 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
|
|
|
314
365
|
],
|
|
315
366
|
"description": "Id of the member's current role Verifiable Endorsement Credential, if issued."
|
|
316
367
|
},
|
|
368
|
+
"personhood": {
|
|
369
|
+
"type": "boolean",
|
|
370
|
+
"description": "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision."
|
|
371
|
+
},
|
|
372
|
+
"personhoodAssertedAt": {
|
|
373
|
+
"type": [
|
|
374
|
+
"string",
|
|
375
|
+
"null"
|
|
376
|
+
],
|
|
377
|
+
"format": "date-time",
|
|
378
|
+
"description": "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag."
|
|
379
|
+
},
|
|
380
|
+
"joinedViaInvitation": {
|
|
381
|
+
"type": "boolean",
|
|
382
|
+
"description": "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart."
|
|
383
|
+
},
|
|
384
|
+
"memberVmcId": {
|
|
385
|
+
"type": [
|
|
386
|
+
"string",
|
|
387
|
+
"null"
|
|
388
|
+
],
|
|
389
|
+
"description": "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here."
|
|
390
|
+
},
|
|
391
|
+
"memberVmcReceivedAt": {
|
|
392
|
+
"type": [
|
|
393
|
+
"string",
|
|
394
|
+
"null"
|
|
395
|
+
],
|
|
396
|
+
"format": "date-time",
|
|
397
|
+
"description": "When that reciprocal credential was received. Paired with `memberVmcId`."
|
|
398
|
+
},
|
|
317
399
|
"extensions": {
|
|
318
400
|
"type": "object",
|
|
319
401
|
"description": "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation)."
|
|
@@ -12,6 +12,10 @@ export interface VTCMembersUpdatePayload {
|
|
|
12
12
|
* New role (wire form). MUST NOT be `admin` — promotion to admin is a separate, gated flow, not a metadata patch.
|
|
13
13
|
*/
|
|
14
14
|
role?: string;
|
|
15
|
+
/**
|
|
16
|
+
* Operator-facing display label for this member. Editable, unlike the DID it labels — which is the point: an operator needs a name they can read on a roster of identifiers they cannot. `null` clears it; omit to leave it unchanged.
|
|
17
|
+
*/
|
|
18
|
+
label?: string | null;
|
|
15
19
|
/**
|
|
16
20
|
* New directory-publish consent.
|
|
17
21
|
*/
|
|
@@ -70,6 +74,26 @@ export interface MemberResponse {
|
|
|
70
74
|
* Id of the member's current role Verifiable Endorsement Credential, if issued.
|
|
71
75
|
*/
|
|
72
76
|
currentRoleVecId?: string | null;
|
|
77
|
+
/**
|
|
78
|
+
* Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision.
|
|
79
|
+
*/
|
|
80
|
+
personhood?: boolean;
|
|
81
|
+
/**
|
|
82
|
+
* When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag.
|
|
83
|
+
*/
|
|
84
|
+
personhoodAssertedAt?: string | null;
|
|
85
|
+
/**
|
|
86
|
+
* Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart.
|
|
87
|
+
*/
|
|
88
|
+
joinedViaInvitation?: boolean;
|
|
89
|
+
/**
|
|
90
|
+
* `id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here.
|
|
91
|
+
*/
|
|
92
|
+
memberVmcId?: string | null;
|
|
93
|
+
/**
|
|
94
|
+
* When that reciprocal credential was received. Paired with `memberVmcId`.
|
|
95
|
+
*/
|
|
96
|
+
memberVmcReceivedAt?: string | null;
|
|
73
97
|
/**
|
|
74
98
|
* Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation).
|
|
75
99
|
*/
|
|
@@ -117,6 +141,13 @@ export const PAYLOAD_SCHEMA = {
|
|
|
117
141
|
"minLength": 1,
|
|
118
142
|
"description": "New role (wire form). MUST NOT be `admin` — promotion to admin is a separate, gated flow, not a metadata patch."
|
|
119
143
|
},
|
|
144
|
+
"label": {
|
|
145
|
+
"type": [
|
|
146
|
+
"string",
|
|
147
|
+
"null"
|
|
148
|
+
],
|
|
149
|
+
"description": "Operator-facing display label for this member. Editable, unlike the DID it labels — which is the point: an operator needs a name they can read on a roster of identifiers they cannot. `null` clears it; omit to leave it unchanged."
|
|
150
|
+
},
|
|
120
151
|
"publishConsent": {
|
|
121
152
|
"type": "boolean",
|
|
122
153
|
"description": "New directory-publish consent."
|
|
@@ -237,6 +268,37 @@ export const PAYLOAD_SCHEMA = {
|
|
|
237
268
|
],
|
|
238
269
|
"description": "Id of the member's current role Verifiable Endorsement Credential, if issued."
|
|
239
270
|
},
|
|
271
|
+
"personhood": {
|
|
272
|
+
"type": "boolean",
|
|
273
|
+
"description": "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision."
|
|
274
|
+
},
|
|
275
|
+
"personhoodAssertedAt": {
|
|
276
|
+
"type": [
|
|
277
|
+
"string",
|
|
278
|
+
"null"
|
|
279
|
+
],
|
|
280
|
+
"format": "date-time",
|
|
281
|
+
"description": "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag."
|
|
282
|
+
},
|
|
283
|
+
"joinedViaInvitation": {
|
|
284
|
+
"type": "boolean",
|
|
285
|
+
"description": "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart."
|
|
286
|
+
},
|
|
287
|
+
"memberVmcId": {
|
|
288
|
+
"type": [
|
|
289
|
+
"string",
|
|
290
|
+
"null"
|
|
291
|
+
],
|
|
292
|
+
"description": "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here."
|
|
293
|
+
},
|
|
294
|
+
"memberVmcReceivedAt": {
|
|
295
|
+
"type": [
|
|
296
|
+
"string",
|
|
297
|
+
"null"
|
|
298
|
+
],
|
|
299
|
+
"format": "date-time",
|
|
300
|
+
"description": "When that reciprocal credential was received. Paired with `memberVmcId`."
|
|
301
|
+
},
|
|
240
302
|
"extensions": {
|
|
241
303
|
"type": "object",
|
|
242
304
|
"description": "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation)."
|
|
@@ -349,6 +411,37 @@ export const RESPONSE_PAYLOAD_SCHEMA = {
|
|
|
349
411
|
],
|
|
350
412
|
"description": "Id of the member's current role Verifiable Endorsement Credential, if issued."
|
|
351
413
|
},
|
|
414
|
+
"personhood": {
|
|
415
|
+
"type": "boolean",
|
|
416
|
+
"description": "Whether the community has asserted that this member is a distinct real person. Read-only here: it is set and cleared by the personhood verbs, and cleared by a renewal-policy downgrade. Load-bearing rather than informational — a community that recognises members of another community may gate on it, so a consumer that cannot read it cannot make that decision."
|
|
417
|
+
},
|
|
418
|
+
"personhoodAssertedAt": {
|
|
419
|
+
"type": [
|
|
420
|
+
"string",
|
|
421
|
+
"null"
|
|
422
|
+
],
|
|
423
|
+
"format": "date-time",
|
|
424
|
+
"description": "When personhood was most recently asserted. Absent where it never has been. Operator-facing: it belongs on admin-gated reads, and a member's own view of themselves need carry only the flag."
|
|
425
|
+
},
|
|
426
|
+
"joinedViaInvitation": {
|
|
427
|
+
"type": "boolean",
|
|
428
|
+
"description": "Whether this member joined by presenting an invitation credential rather than by an admin's decision on an open request. The two routes to membership carry different evidence, and an operator reviewing a roster can otherwise not tell them apart."
|
|
429
|
+
},
|
|
430
|
+
"memberVmcId": {
|
|
431
|
+
"type": [
|
|
432
|
+
"string",
|
|
433
|
+
"null"
|
|
434
|
+
],
|
|
435
|
+
"description": "`id` of the member-issued reciprocal membership credential — the member half of the pair — once the member has sent it. Absent until then, which is the useful signal: it distinguishes a membership the community has asserted from one the member has acknowledged. The credential body is not echoed here."
|
|
436
|
+
},
|
|
437
|
+
"memberVmcReceivedAt": {
|
|
438
|
+
"type": [
|
|
439
|
+
"string",
|
|
440
|
+
"null"
|
|
441
|
+
],
|
|
442
|
+
"format": "date-time",
|
|
443
|
+
"description": "When that reciprocal credential was received. Paired with `memberVmcId`."
|
|
444
|
+
},
|
|
352
445
|
"extensions": {
|
|
353
446
|
"type": "object",
|
|
354
447
|
"description": "Opaque community-defined extension bag. Keys are maintainer-defined; the maintainer caps its size (16 KiB in the reference implementation)."
|