-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmetadata.json
41 lines (41 loc) · 1.14 KB
/
metadata.json
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
{
"$schema": "http://json-schema.org/draft-07/schema#",
"info": {
"title": "abac_app",
"version": "1.1.0"
},
"contract": {
"name": "abac_app",
"transactions": {
"check_abac": {
"name": "check_abac",
"operation": "query",
"parameters": {
"type": "object",
"properties": {
"name": {
"type": "string"
}
}
},
"returns": {
"type": "object",
"properties": {
"cid": {
"type": "string"
},
"mspid": {
"type": "string"
},
"name": {
"type": "string"
},
"value": {
"type": "string"
}
}
}
}
}
}
}