├── .gitignore ├── AGENDA.md ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── grants └── grant_1 │ ├── JWS Grant .pdf │ ├── applications │ ├── spruce_systems.md │ └── transmute.md │ └── selection.md ├── templates └── work_item.md └── work_items ├── README.md ├── WACI_presentation_exchange.md ├── credential_manifest.md ├── credential_schemas.md ├── data_agreement.md ├── jwt_vc_interoperability_profile.md ├── presentation_exchange.md ├── schema_directory.md ├── trust_establishment.md └── vc_marketplace.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /AGENDA.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/AGENDA.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/README.md -------------------------------------------------------------------------------- /grants/grant_1/JWS Grant .pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/grants/grant_1/JWS Grant .pdf -------------------------------------------------------------------------------- /grants/grant_1/applications/spruce_systems.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/grants/grant_1/applications/spruce_systems.md -------------------------------------------------------------------------------- /grants/grant_1/applications/transmute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/grants/grant_1/applications/transmute.md -------------------------------------------------------------------------------- /grants/grant_1/selection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/grants/grant_1/selection.md -------------------------------------------------------------------------------- /templates/work_item.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/templates/work_item.md -------------------------------------------------------------------------------- /work_items/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/work_items/README.md -------------------------------------------------------------------------------- /work_items/WACI_presentation_exchange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/work_items/WACI_presentation_exchange.md -------------------------------------------------------------------------------- /work_items/credential_manifest.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/work_items/credential_manifest.md -------------------------------------------------------------------------------- /work_items/credential_schemas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/work_items/credential_schemas.md -------------------------------------------------------------------------------- /work_items/data_agreement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/work_items/data_agreement.md -------------------------------------------------------------------------------- /work_items/jwt_vc_interoperability_profile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/work_items/jwt_vc_interoperability_profile.md -------------------------------------------------------------------------------- /work_items/presentation_exchange.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/work_items/presentation_exchange.md -------------------------------------------------------------------------------- /work_items/schema_directory.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/work_items/schema_directory.md -------------------------------------------------------------------------------- /work_items/trust_establishment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/work_items/trust_establishment.md -------------------------------------------------------------------------------- /work_items/vc_marketplace.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decentralized-identity/claims-credentials/HEAD/work_items/vc_marketplace.md --------------------------------------------------------------------------------