An open API service indexing awesome lists of open source software.

https://github.com/transmute-industries/vc-ld-json-pointer-csv

Converting JSON-LD to CSV
https://github.com/transmute-industries/vc-ld-json-pointer-csv

csv json jsonld linked-data vc verifiable-credentials

Last synced: about 2 months ago
JSON representation

Converting JSON-LD to CSV

Awesome Lists containing this project

README

          

# Verifiable Credentials as CSVs

[](https://transmute.industries)

#### [Questions? Contact Transmute](https://transmute.typeform.com/to/RshfIw?typeform-source=vc-ld-json-pointer-csv)

#### 🚧 Warning Experimental 🔥

## vc -> json-pointer.dict -> csv

### application/vc+ld+json

```json
{
"@context": [
"https://www.w3.org/ns/credentials/v2"
],
"type": [
"VerifiableCredential"
],
"issuer": {
"id": "did:web:jwt.vc",
"type": "Organization",
"name": "Capital Factory",
"location": {
"type": "Place",
"address": {
"type": "PostalAddress",
"streetAddress": "701 Brazos St",
"addressLocality": "Austin",
"addressRegion": "Texas",
"postalCode": "78701",
"addressCountry": "US"
}
}
},
"validFrom": "2023-05-09T22:25:23.652Z",
"credentialSubject": {
"id": "did:web:jwt.vc",
"type": "Organization",
"name": "Los Angeles Harbor Department",
"location": {
"type": "Place",
"address": {
"type": "PostalAddress",
"streetAddress": "425 S. Palos Verdes St.",
"addressLocality": "San Pedro",
"addressRegion": "CA",
"postalCode": "90731",
"addressCountry": "US"
}
}
}
}
```

### application/vc+ld+json+csv

```csv
/@context/0,/type/0,/issuer/id,/issuer/type,/issuer/name,/issuer/location/type,/issuer/location/address/type,/issuer/location/address/streetAddress,/issuer/location/address/addressLocality,/issuer/location/address/addressRegion,/issuer/location/address/postalCode,/issuer/location/address/addressCountry,/validFrom,/credentialSubject/id,/credentialSubject/type,/credentialSubject/name,/credentialSubject/location/type,/credentialSubject/location/address/type,/credentialSubject/location/address/streetAddress,/credentialSubject/location/address/addressLocality,/credentialSubject/location/address/addressRegion,/credentialSubject/location/address/postalCode,/credentialSubject/location/address/addressCountry
https://www.w3.org/ns/credentials/v2,VerifiableCredential,did:web:jwt.vc,Organization,Capital Factory,Place,PostalAddress,701 Brazos St,Austin,Texas,78701,US,2023-05-09T22:25:23.652Z,did:web:jwt.vc,Organization,Los Angeles Harbor Department,Place,PostalAddress,425 S. Palos Verdes St.,San Pedro,CA,90731,US
```