-
Notifications
You must be signed in to change notification settings - Fork 1
/
members_schema.json
51 lines (51 loc) · 1.25 KB
/
members_schema.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
42
43
44
45
46
47
48
49
50
51
{
"properties": {
"schema": {
"type": "string"
},
"members": {
"type": "array",
"items": {
"properties": {
"schema": {
"type": "string"
},
"member_id": {
"description": "An identifier for the image member (tenantId)",
"type": "string"
},
"image_id": {
"description": "An identifier for the image",
"type": "string",
"pattern": "^([0-9a-fA-F]){8}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){4}-([0-9a-fA-F]){12}$"
},
"updated_at": {
"description": "Date and time of last modification of image member",
"type": "string"
},
"created_at": {
"description": "Date and time of image member creation",
"type": "string"
},
"status": {
"description": "The status of this image member",
"type": "string",
"enum": [
"pending",
"accepted",
"rejected"
]
}
},
"name": "member"
}
}
},
"links": [
{
"rel": "describedby",
"href": "{schema}"
}
],
"name": "members"
}