Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion static/schemas/Builder.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"instance_id": {
"description": "Instance ID from `xmpMM:InstanceID` in XMP metadata.",
"type": "string",
"default": "xmp:iid:71fdc000-fc8a-48c7-a6b0-d5287352ebf1"
"default": "xmp:iid:641aeb01-3d3d-4a2b-a4c2-9ac324bbd5f1"
},
"thumbnail": {
"description": "An optional ResourceRef to a thumbnail image that represents the asset that was signed.\nMust be available when the manifest is signed.",
Expand Down
2 changes: 1 addition & 1 deletion static/schemas/ManifestDefinition.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"instance_id": {
"description": "Instance ID from `xmpMM:InstanceID` in XMP metadata.",
"type": "string",
"default": "xmp:iid:74bac48c-2fac-4329-941d-dccfa287bb97"
"default": "xmp:iid:915f9d8b-7f7d-4805-84a9-5b85b1c3207b"
},
"thumbnail": {
"description": "An optional ResourceRef to a thumbnail image that represents the asset that was signed.\nMust be available when the manifest is signed.",
Expand Down
2 changes: 1 addition & 1 deletion static/schemas/Reader.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
"instance_id": {
"description": "Instance ID from `xmpMM:InstanceID` in XMP metadata.",
"type": "string",
"default": "xmp:iid:b69102a5-27e9-4277-b39e-3c60b0f109ef"
"default": "xmp:iid:2ddff3fb-db7e-404a-8ed9-46ab86347697"
},
"thumbnail": {
"anyOf": [
Expand Down
17 changes: 15 additions & 2 deletions static/schemas/Settings.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"user_anchors": null,
"trust_anchors": null,
"trust_config": null,
"allowed_list": null
"allowed_list": null,
"trusted_ica_issuers": null
}
},
"cawg_trust": {
Expand All @@ -30,7 +31,8 @@
"user_anchors": null,
"trust_anchors": null,
"trust_config": null,
"allowed_list": null
"allowed_list": null,
"trusted_ica_issuers": null
}
},
"core": {
Expand Down Expand Up @@ -162,6 +164,17 @@
"null"
],
"default": null
},
"trusted_ica_issuers": {
"description": "Exact-match allow-list of trusted CAWG identity claims aggregation (ICA)\nissuer DIDs.\n\nEach entry is a full DID string (any DID method) that is compared, after\nstripping any fragment, against the `issuer` of an ICA verifiable\ncredential. An issuer that is not present on this list is reported with\nthe informational code `cawg.ica.untrusted_issuer` for that identity\nassertion and its `cawg.ica.credential_valid` success code is withheld.\n\nThe default value is empty, meaning that NO ICA issuer is trusted. This\nis a deliberate secure default: a self-issued `did:jwk` (or any other\nissuer) is not trustworthy simply because its signature is\nself-consistent. Populate this list with the DIDs of issuers you trust.",
"type": [
"array",
"null"
],
"items": {
"type": "string"
},
"default": null
}
}
},
Expand Down