-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgitcoin-passport-vc.graphql
259 lines (236 loc) · 9.71 KB
/
gitcoin-passport-vc.graphql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
# #### Interfaces ####
interface GitcoinAttestation
@createModel(description: "Base class for any Gitcoin attestation") {
type: [String!]! @string(minLength: 1, maxLength: 1024) @list(maxLength: 1024)
}
interface VerifiableCredentialSubject
@createModel(description: "A verifiable credential subject interface") {
_id: String! @string(minLength: 1, maxLength: 1024)
}
interface VerifiableCredentialProof
@createModel(description: "A verifiable credential proof interface") {
type: String! @string(minLength: 1, maxLength: 1024)
}
interface VerifiableCredential implements GitcoinAttestation
@createModel(description: "A verifiable credential interface") {
type: [String!]! @string(minLength: 1, maxLength: 1024) @list(maxLength: 1024)
issuer: String! @string(minLength: 1, maxLength: 1024)
issuanceDate: DateTime!
expirationDate: DateTime
}
interface VerifiableCredential
@createModel(description: "A verifiable credential interface") {
type: [String!]! @string(minLength: 1, maxLength: 1024) @list(maxLength: 1024)
issuer: String! @string(minLength: 1, maxLength: 1024)
issuanceDate: DateTime!
expirationDate: DateTime
}
interface GitcoinPassportStampWrapperInterface
@createModel(
accountRelation: LIST
description: "Interface for GitcoinPassportStampWrapper"
) {
vcID: StreamID! @documentReference(model: "VerifiableCredential")
vc: VerifiableCredential! @relationDocument(property: "vcID")
isDeleted: Boolean
isRevoked: Boolean
}
type GitcoinPassportStampWrapper implements GitcoinPassportStampWrapperInterface
@createModel(
accountRelation: LIST
description: "GitcoinPassportStampWrapper"
)
@createIndex(fields: [{ path: "vcID" }])
@createIndex(fields: [{ path: "isDeleted" }])
@createIndex(fields: [{ path: "isRevoked" }]) {
vcID: StreamID! @documentReference(model: "VerifiableCredential")
vc: VerifiableCredential! @relationDocument(property: "vcID")
isDeleted: Boolean
isRevoked: Boolean
}
# #### Create a type for the proof (this will most likely be reused) ####
type GitcoinPassportVcProof {
_context: String! @string(minLength: 1, maxLength: 1024)
type: String! @string(minLength: 1, maxLength: 1024)
proofPurpose: String! @string(minLength: 1, maxLength: 1024)
proofValue: String! @string(minLength: 1, maxLength: 1024)
verificationMethod: String! @string(minLength: 1, maxLength: 1024)
created: DateTime!
eip712Domain: EIP712Domain!
}
type EIP712Domain {
primaryType: String! @string(minLength: 1, maxLength: 1024)
domain: EIP712DomainDomain!
types: EIP712DomainTypes!
}
type EIP712ValueType {
name: String! @string(minLength: 1, maxLength: 1024)
type: String! @string(minLength: 1, maxLength: 1024)
}
type EIP712DomainDomain {
# TODO: add optinal fields ...
name: String! @string(minLength: 1, maxLength: 1024)
}
type EIP712DomainTypes {
Context: [EIP712ValueType] @list(maxLength: 1024)
CredentialStatus: [EIP712ValueType] @list(maxLength: 1024)
CredentialSubject: [EIP712ValueType] @list(maxLength: 1024)
Document: [EIP712ValueType] @list(maxLength: 1024)
EIP712Domain: [EIP712ValueType] @list(maxLength: 1024)
Proof: [EIP712ValueType] @list(maxLength: 1024)
}
############################################################################################
# #### Implementation of GitcoinPassportStamp (the binary provider based one) ####
############################################################################################
# Sample VC
# {
# "type": [
# "VerifiableCredential", "GitcoinPassportStamp"
# ],
# "@context": [
# "https://www.w3.org/2018/credentials/v1", "https://credentials.passport.gitcoin.co/"
# ],
# "issuer": "...",
# "issuanceDate": "2023-10-23T13:32:52.935Z",
# "expirationDate": "2024-01-21T13:32:52.935Z",
# "credentialSubject": {
# "id": "did:pkh:eip155:1:0x0000000000000000000000000000000000000000",
# "hash": "v0.0.0:12121212121212121212121212121212121212",
# "provider": "MyProvider",
# "@context": [...]
# },
# "proof": {...}
# }
type GitcoinPassportVcCredentialSubjectContext {
hash: String! @string(minLength: 1, maxLength: 1024)
provider: String! @string(minLength: 1, maxLength: 1024)
}
type GitcoinPassportVcCredentialSubject implements VerifiableCredentialSubject {
_id: String! @string(minLength: 1, maxLength: 1024)
provider: String! @string(minLength: 1, maxLength: 1024)
hash: String! @string(minLength: 1, maxLength: 1024)
}
type GitcoinPassportStamp implements VerifiableCredential
@createModel(
accountRelation: LIST
description: "A gitcoin passport stamp with a provider and hash"
)
@createIndex(fields: [{ path: "issuer" }])
@createIndex(fields: [{ path: "issuanceDate" }])
@createIndex(fields: [{ path: "expirationDate" }]) {
_context: [String!]!
@string(minLength: 1, maxLength: 1024)
@list(maxLength: 1024)
type: [String!]! @string(minLength: 1, maxLength: 1024) @list(maxLength: 1024)
issuer: String! @string(minLength: 1, maxLength: 1024)
issuanceDate: DateTime!
expirationDate: DateTime
credentialSubject: GitcoinPassportVcCredentialSubject!
proof: GitcoinPassportVcProof!
}
############################################################################################
# #### Implementation of GitcoinPassportProbabilisticStamp (the binary provider based one) ####
############################################################################################
# Sample VC, please note the new `probability` field in credentialSubject
# The hash will not include the `probability`, as this will be a dynamic field
# {
# "type": [
# "VerifiableCredential", "GitcoinPassportProbabilisticStamp"
# ],
# "@context": [
# "https://www.w3.org/2018/credentials/v1", "https://credentials.passport.gitcoin.co/"
# ],
# "issuer": "...",
# "issuanceDate": "2023-10-23T13:32:52.935Z",
# "expirationDate": "2024-01-21T13:32:52.935Z",
# "credentialSubject": {
# "id": "did:pkh:eip155:1:0x0000000000000000000000000000000000000000",
# "hash": "v0.0.0:12121212121212121212121212121212121212",
# "provider": "MyProvider",
# "probability": 200,
# "@context": [...]
# },
# "proof": {...}
# }
type GitcoinPassportProbabilisticStampCredentialSubjectContext {
hash: String! @string(minLength: 1, maxLength: 1024)
provider: String! @string(minLength: 1, maxLength: 1024)
probability: String! @string(minLength: 1, maxLength: 1024)
}
type GitcoinPassportProbabilisticStampCredentialSubject implements VerifiableCredentialSubject {
_id: String! @string(minLength: 1, maxLength: 1024)
provider: String! @string(minLength: 1, maxLength: 1024)
hash: String! @string(minLength: 1, maxLength: 1024)
probability: Int! @int(min: 0, max: 256)
_context: GitcoinPassportProbabilisticStampCredentialSubjectContext!
}
type GitcoinPassportProbabilisticStamp implements VerifiableCredential
@createModel(
accountRelation: LIST
description: "A gitcoin passport stamp with a provider, hash and probability from 0..256"
)
@createIndex(fields: [{ path: "issuer" }])
@createIndex(fields: [{ path: "issuanceDate" }])
@createIndex(fields: [{ path: "expirationDate" }]) {
_context: [String!]!
@string(minLength: 1, maxLength: 1024)
@list(maxLength: 1024)
type: [String!]! @string(minLength: 1, maxLength: 1024) @list(maxLength: 1024)
issuer: String! @string(minLength: 1, maxLength: 1024)
issuanceDate: DateTime!
expirationDate: DateTime
credentialSubject: GitcoinPassportProbabilisticStampCredentialSubject!
proof: GitcoinPassportVcProof!
}
############################################################################################
# #### Implementation of GitcoinPassportMembershipStamp (attests the membership in a group) ####
############################################################################################
# A gitcoin passport stamp that attests the membership in a given group (identified by scorerId).
# TODO: we might want to include more group info here, or maybe a scorer can have several groups ...
# {
# "type": [
# "VerifiableCredential", "GitcoinPassportMembershipStamp"
# ],
# "@context": [
# "https://www.w3.org/2018/credentials/v1", "https://credentials.passport.gitcoin.co/"
# ],
# "issuer": "...",
# "issuanceDate": "2023-10-23T13:32:52.935Z",
# "expirationDate": "2024-01-21T13:32:52.935Z",
# "credentialSubject": {
# "id": "did:pkh:eip155:1:0x0000000000000000000000000000000000000000",
# "hash": "v0.0.0:12121212121212121212121212121212121212",
# "scorerId": 123,
# "@context": [...]
# },
# "proof": {...}
# }
type GitcoinPassportMembershipStampCredentialSubjectContext {
hash: String! @string(minLength: 1, maxLength: 1024)
scorerId: String! @string(minLength: 1, maxLength: 1024)
}
type GitcoinPassportMembershipStampCredentialSubject implements VerifiableCredentialSubject {
_id: String! @string(minLength: 1, maxLength: 1024)
provider: String! @string(minLength: 1, maxLength: 1024)
hash: String! @string(minLength: 1, maxLength: 1024)
scorerId: Int! @int
_context: GitcoinPassportMembershipStampCredentialSubjectContext!
}
type GitcoinPassportMembershipStamp implements VerifiableCredential
@createModel(
accountRelation: LIST
description: "A gitcoin passport stamp that attests the membership in a given group (identified by scorerId)"
)
@createIndex(fields: [{ path: "issuer" }])
@createIndex(fields: [{ path: "issuanceDate" }])
@createIndex(fields: [{ path: "expirationDate" }]) {
_context: [String!]!
@string(minLength: 1, maxLength: 1024)
@list(maxLength: 1024)
type: [String!]! @string(minLength: 1, maxLength: 1024) @list(maxLength: 1024)
issuer: String! @string(minLength: 1, maxLength: 1024)
issuanceDate: DateTime!
expirationDate: DateTime
credentialSubject: GitcoinPassportMembershipStampCredentialSubject!
proof: GitcoinPassportVcProof!
}