-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjdo_hal.json
45 lines (43 loc) · 1.04 KB
/
jdo_hal.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
{
"acme:trigram": "JDO",
"first_name": "John",
"last_name": "Doe",
"phone_numbers": [
"0102030405"
],
"email": "[email protected]",
"acme:team": "SOFT",
"entry_date": "2017-05-02",
"leaving_date": null,
"description": "I am a very nice person",
"_links": {
"self": {"href": "/people/jdo"},
"curies": [{"name": "acme", "href": "http://employees.acme.com/rels/{rel}", "templated": true}],
"acme:manager": {"href": "/people/ted", "title": "TED"},
"acme:search": {
"href": "/people/search{?trigram}"
}
},
"_embedded": {
"acme:skills": [
{
"category": "dev",
"name": "Python",
"level": 1.0,
"motivation": 2.0,
"_links": {
"self": {"href": "/skills/python"}
}
},
{
"category": "dev",
"name": "REST API",
"level": 1.0,
"motivation": 2.0,
"_links": {
"self": {"href": "/skills/rest-api"}
}
}
]
}
}