github.com/hyperledger/aries-framework-go@v0.3.2/test/bbs/src/contexts/citizenship_v1.jsonld (about) 1 { 2 "@context": { 3 "@version": 1.1, 4 "@protected": true, 5 6 "name": "http://schema.org/name", 7 "description": "http://schema.org/description", 8 "identifier": "http://schema.org/identifier", 9 "image": {"@id": "http://schema.org/image", "@type": "@id"}, 10 11 "PermanentResidentCard": { 12 "@id": "https://w3id.org/citizenship#PermanentResidentCard", 13 "@context": { 14 "@version": 1.1, 15 "@protected": true, 16 17 "id": "@id", 18 "type": "@type", 19 20 "description": "http://schema.org/description", 21 "name": "http://schema.org/name", 22 "identifier": "http://schema.org/identifier", 23 "image": {"@id": "http://schema.org/image", "@type": "@id"} 24 } 25 }, 26 27 "PermanentResident": { 28 "@id": "https://w3id.org/citizenship#PermanentResident", 29 "@context": { 30 "@version": 1.1, 31 "@protected": true, 32 33 "id": "@id", 34 "type": "@type", 35 36 "ctzn": "https://w3id.org/citizenship#", 37 "schema": "http://schema.org/", 38 "xsd": "http://www.w3.org/2001/XMLSchema#", 39 40 "birthCountry": "ctzn:birthCountry", 41 "birthDate": {"@id": "schema:birthDate", "@type": "xsd:dateTime"}, 42 "commuterClassification": "ctzn:commuterClassification", 43 "familyName": "schema:familyName", 44 "gender": "schema:gender", 45 "givenName": "schema:givenName", 46 "lprCategory": "ctzn:lprCategory", 47 "lprNumber": "ctzn:lprNumber", 48 "residentSince": {"@id": "ctzn:residentSince", "@type": "xsd:dateTime"} 49 } 50 }, 51 52 "Person": "http://schema.org/Person" 53 } 54 }