-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcard.contact.rsp.notecard.api.json
More file actions
39 lines (39 loc) · 1.24 KB
/
card.contact.rsp.notecard.api.json
File metadata and controls
39 lines (39 loc) · 1.24 KB
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
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/blues/notecard-schema/master/card.contact.rsp.notecard.api.json",
"title": "card.contact Response Application Programming Interface (API) Schema",
"type": "object",
"version": "1.1.2",
"apiVersion": "9.1.1",
"skus": [
"CELL",
"CELL+WIFI",
"WIFI"
],
"properties": {
"email": {
"description": "Email address of the Notecard maintainer.",
"type": "string",
"format": "email"
},
"name": {
"description": "Name of the Notecard maintainer.",
"type": "string"
},
"org": {
"description": "Organization name of the Notecard maintainer.",
"type": "string"
},
"role": {
"description": "Role of the Notecard maintainer.",
"type": "string"
}
},
"samples": [
{
"title": "Get Contact Information",
"description": "Example response showing contact information.",
"json": "{\"name\": \"Tom Turkey\", \"org\": \"Blues\", \"role\": \"Head of Security\", \"email\": \"tom@blues.com\"}"
}
]
}