{"id":22267747,"url":"https://github.com/transmute-industries/vc-ld-json-pointer-csv","last_synced_at":"2026-04-28T20:35:37.072Z","repository":{"id":163617433,"uuid":"639083662","full_name":"transmute-industries/vc-ld-json-pointer-csv","owner":"transmute-industries","description":"Converting JSON-LD to CSV","archived":false,"fork":false,"pushed_at":"2023-05-11T13:16:12.000Z","size":50,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-03-25T14:45:41.986Z","etag":null,"topics":["csv","json","jsonld","linked-data","vc","verifiable-credentials"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/transmute-industries.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-05-10T18:14:50.000Z","updated_at":"2023-05-11T13:13:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"dbab0874-6468-4c87-bb51-64535c200e97","html_url":"https://github.com/transmute-industries/vc-ld-json-pointer-csv","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/transmute-industries/vc-ld-json-pointer-csv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transmute-industries%2Fvc-ld-json-pointer-csv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transmute-industries%2Fvc-ld-json-pointer-csv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transmute-industries%2Fvc-ld-json-pointer-csv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transmute-industries%2Fvc-ld-json-pointer-csv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/transmute-industries","download_url":"https://codeload.github.com/transmute-industries/vc-ld-json-pointer-csv/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/transmute-industries%2Fvc-ld-json-pointer-csv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32398980,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-28T19:38:08.556Z","status":"ssl_error","status_checked_at":"2026-04-28T19:37:55.688Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["csv","json","jsonld","linked-data","vc","verifiable-credentials"],"created_at":"2024-12-03T11:08:42.946Z","updated_at":"2026-04-28T20:35:37.067Z","avatar_url":"https://github.com/transmute-industries.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Verifiable Credentials as CSVs\n\n[\u003cimg src=\"./transmute-banner.png\" /\u003e](https://transmute.industries)\n\n#### [Questions? Contact Transmute](https://transmute.typeform.com/to/RshfIw?typeform-source=vc-ld-json-pointer-csv)\n\n#### 🚧 Warning Experimental 🔥\n\n## vc -\u003e json-pointer.dict -\u003e csv\n\n### application/vc+ld+json\n\n```json\n{\n  \"@context\": [\n    \"https://www.w3.org/ns/credentials/v2\"\n  ],\n  \"type\": [\n    \"VerifiableCredential\"\n  ],\n  \"issuer\": {\n    \"id\": \"did:web:jwt.vc\",\n    \"type\": \"Organization\",\n    \"name\": \"Capital Factory\",\n    \"location\": {\n      \"type\": \"Place\",\n      \"address\": {\n        \"type\": \"PostalAddress\",\n        \"streetAddress\": \"701 Brazos St\",\n        \"addressLocality\": \"Austin\",\n        \"addressRegion\": \"Texas\",\n        \"postalCode\": \"78701\",\n        \"addressCountry\": \"US\"\n      }\n    }\n  },\n  \"validFrom\": \"2023-05-09T22:25:23.652Z\",\n  \"credentialSubject\": {\n    \"id\": \"did:web:jwt.vc\",\n    \"type\": \"Organization\",\n    \"name\": \"Los Angeles Harbor Department\",\n    \"location\": {\n      \"type\": \"Place\",\n      \"address\": {\n        \"type\": \"PostalAddress\",\n        \"streetAddress\": \"425 S. Palos Verdes St.\",\n        \"addressLocality\": \"San Pedro\",\n        \"addressRegion\": \"CA\",\n        \"postalCode\": \"90731\",\n        \"addressCountry\": \"US\"\n      }\n    }\n  }\n}\n```\n\n\n\n### application/vc+ld+json+csv\n\n```csv\n/@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\nhttps://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\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftransmute-industries%2Fvc-ld-json-pointer-csv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftransmute-industries%2Fvc-ld-json-pointer-csv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftransmute-industries%2Fvc-ld-json-pointer-csv/lists"}