-
Notifications
You must be signed in to change notification settings - Fork 16
/
draft-kelly-json-hal.txt
672 lines (426 loc) · 20.7 KB
/
draft-kelly-json-hal.txt
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
Network Working Group M. Kelly
Internet-Draft Stateless
Intended status: Informational 19 October 2023
Expires: 21 April 2024
JSON Hypertext Application Language
draft-kelly-json-hal-11
Abstract
This document proposes a media type for representing resources and
their relations with hyperlinks.
Status of This Memo
This Internet-Draft is submitted in full conformance with the
provisions of BCP 78 and BCP 79.
Internet-Drafts are working documents of the Internet Engineering
Task Force (IETF). Note that other groups may also distribute
working documents as Internet-Drafts. The list of current Internet-
Drafts is at https://datatracker.ietf.org/drafts/current/.
Internet-Drafts are draft documents valid for a maximum of six months
and may be updated, replaced, or obsoleted by other documents at any
time. It is inappropriate to use Internet-Drafts as reference
material or to cite them other than as "work in progress."
This Internet-Draft will expire on 21 April 2024.
Copyright Notice
Copyright (c) 2023 IETF Trust and the persons identified as the
document authors. All rights reserved.
This document is subject to BCP 78 and the IETF Trust's Legal
Provisions Relating to IETF Documents (https://trustee.ietf.org/
license-info) in effect on the date of publication of this document.
Please review these documents carefully, as they describe your rights
and restrictions with respect to this document. Code Components
extracted from this document must include Revised BSD License text as
described in Section 4.e of the Trust Legal Provisions and are
provided without warranty as described in the Revised BSD License.
Kelly Expires 21 April 2024 [Page 1]
Internet-Draft JSON Hypertext Application Language October 2023
Table of Contents
1. Introduction . . . . . . . . . . . . . . . . . . . . . . . . 2
2. Requirements . . . . . . . . . . . . . . . . . . . . . . . . 3
3. HAL Documents . . . . . . . . . . . . . . . . . . . . . . . . 3
4. Resource Objects . . . . . . . . . . . . . . . . . . . . . . 4
4.1. Reserved Properties . . . . . . . . . . . . . . . . . . . 4
4.1.1. _links . . . . . . . . . . . . . . . . . . . . . . . 4
4.1.2. _embedded . . . . . . . . . . . . . . . . . . . . . . 4
5. Link Objects . . . . . . . . . . . . . . . . . . . . . . . . 5
5.1. href . . . . . . . . . . . . . . . . . . . . . . . . . . 5
5.2. templated . . . . . . . . . . . . . . . . . . . . . . . . 5
5.3. type . . . . . . . . . . . . . . . . . . . . . . . . . . 5
5.4. deprecation . . . . . . . . . . . . . . . . . . . . . . . 5
5.5. name . . . . . . . . . . . . . . . . . . . . . . . . . . 6
5.6. profile . . . . . . . . . . . . . . . . . . . . . . . . . 6
5.7. title . . . . . . . . . . . . . . . . . . . . . . . . . . 6
5.8. hreflang . . . . . . . . . . . . . . . . . . . . . . . . 6
6. Example Document . . . . . . . . . . . . . . . . . . . . . . 6
7. Media Type Parameters . . . . . . . . . . . . . . . . . . . . 8
7.1. profile . . . . . . . . . . . . . . . . . . . . . . . . . 8
8. Recommendations . . . . . . . . . . . . . . . . . . . . . . . 8
8.1. Self Link . . . . . . . . . . . . . . . . . . . . . . . . 8
8.2. Link relations . . . . . . . . . . . . . . . . . . . . . 8
8.3. HAL curies . . . . . . . . . . . . . . . . . . . . . . . 8
8.4. Hypertext Cache Pattern . . . . . . . . . . . . . . . . . 9
9. Security Considerations . . . . . . . . . . . . . . . . . . . 10
10. IANA Considerations . . . . . . . . . . . . . . . . . . . . . 11
11. Normative References . . . . . . . . . . . . . . . . . . . . 11
Appendix A. Acknowledgements . . . . . . . . . . . . . . . . . . 11
Appendix B. Frequently Asked Questions . . . . . . . . . . . . . 12
B.1. How should a client know the meaning/structure/semantics/
type of a resource? . . . . . . . . . . . . . . . . . . . 12
B.2. Where can I find libraries for working with HAL? . . . . 12
B.3. Why are the reserved properties prefixed with an
underscore? . . . . . . . . . . . . . . . . . . . . . . . 12
B.4. Are all underscore-prefixed properties reserved? . . . . 12
B.5. Why does HAL have no forms? . . . . . . . . . . . . . . . 12
Author's Address . . . . . . . . . . . . . . . . . . . . . . . . 12
1. Introduction
There is an emergence of non-HTML HTTP applications ("Web APIs")
which use hyperlinks to direct clients around their resources.
The JSON Hypertext Application Language (HAL) is a standard which
establishes conventions for expressing hypermedia controls, such as
links, with JSON [RFC4627].
Kelly Expires 21 April 2024 [Page 2]
Internet-Draft JSON Hypertext Application Language October 2023
HAL is a generic media type with which Web APIs can be developed and
exposed as series of links. Clients of these APIs can select links
by their link relation type and traverse them in order to progress
through the application.
HAL's conventions result in a uniform interface for serving and
consuming hypermedia, enabling the creation of general-purpose
libraries that can be re-used on any API utilising HAL.
The primary design goals of HAL are generality and simplicity. HAL
can be applied to many different domains, and imposes the minimal
amount of structure necessary to cover the key requirements of a
hypermedia Web API.
2. Requirements
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in [RFC2119].
3. HAL Documents
A HAL Document uses the format described in [RFC4627] and has the
media type "application/hal+json".
Its root object MUST be a Resource Object.
For example:
GET /orders/523 HTTP/1.1
Host: example.org
Accept: application/hal+json
HTTP/1.1 200 OK
Content-Type: application/hal+json
{
"_links": {
"self": { "href": "/orders/523" },
"warehouse": { "href": "/warehouse/56" },
"invoice": { "href": "/invoices/873" }
},
"currency": "USD",
"status": "shipped",
"total": 10.20
}
Kelly Expires 21 April 2024 [Page 3]
Internet-Draft JSON Hypertext Application Language October 2023
Here, we have a HAL document representing an order resource with the
URI "/orders/523". It has "warehouse" and "invoice" links, and its
own state in the form of "currency", "status", and "total"
properties.
4. Resource Objects
A Resource Object represents a resource.
It has two reserved properties:
(1) "_links": contains links to other resources.
(2) "_embedded": contains embedded resources.
All other properties MUST be valid JSON, and represent the current
state of the resource.
4.1. Reserved Properties
4.1.1. _links
The reserved "_links" property is OPTIONAL.
It is an object whose property names are link relation types (as
defined by [RFC5988]) and values are either a Link Object or an array
of Link Objects. The subject resource of these links is the Resource
Object of which the containing "_links" object is a property.
For a given link relation, servers SHOULD NOT change the property
between a Link Object and array of Link Objects. Such changes SHOULD
introduce a new link relation. This is to avoid breaking changes for
existing clients coupled to the original choice, and is a
consideration for any JSON based API.
4.1.2. _embedded
The reserved "_embedded" property is OPTIONAL
It is an object whose property names are link relation types (as
defined by [RFC5988]) and values are either a Resource Object or an
array of Resource Objects.
Embedded Resources MAY be a full, partial, or inconsistent version of
the representation served from the target URI.
Kelly Expires 21 April 2024 [Page 4]
Internet-Draft JSON Hypertext Application Language October 2023
5. Link Objects
A Link Object represents a hyperlink from the containing resource to
a URI. It has the following properties:
5.1. href
The "href" property is REQUIRED.
Its value is either a URI [RFC3986] or a URI Template [RFC6570].
If the value is a URI Template then the Link Object SHOULD have a
"templated" attribute whose value is true.
5.2. templated
The "templated" property is OPTIONAL.
Its value is boolean and SHOULD be true when the Link Object's "href"
property is a URI Template.
Its value SHOULD be considered false if it is undefined or any other
value than true.
5.3. type
The "type" property is OPTIONAL.
Its value is a string used as a hint to indicate the media type
expected when dereferencing the target resource.
5.4. deprecation
The "deprecation" property is OPTIONAL.
Its presence indicates that the link is to be deprecated (i.e.
removed) at a future date. Its value is a URL that SHOULD provide
further information about the deprecation.
A client SHOULD provide some notification (for example, by logging a
warning message) whenever it traverses over a link that has this
property. The notification SHOULD include the deprecation property's
value so that a client maintainer can easily find information about
the deprecation.
Kelly Expires 21 April 2024 [Page 5]
Internet-Draft JSON Hypertext Application Language October 2023
5.5. name
The "name" property is OPTIONAL.
Its value MAY be used as a secondary key for selecting Link Objects
which share the same relation type.
5.6. profile
The "profile" property is OPTIONAL.
Its value is a string which is a URI that hints about the profile (as
defined by [RFC6906]) of the target resource.
5.7. title
The "title" property is OPTIONAL.
Its value is a string and is intended for labelling the link with a
human-readable identifier (as defined by [RFC5988]).
5.8. hreflang
The "hreflang" property is OPTIONAL.
Its value is a string and is intended for indicating the language of
the target resource (as defined by [RFC5988]).
6. Example Document
The following is an example document representing a list of orders
Kelly Expires 21 April 2024 [Page 6]
Internet-Draft JSON Hypertext Application Language October 2023
GET /orders HTTP/1.1
Host: example.org
Accept: application/hal+json
HTTP/1.1 200 OK
Content-Type: application/hal+json
{
"_links": {
"self": { "href": "/orders" },
"next": { "href": "/orders?page=2" },
"find": { "href": "/orders{?id}", "templated": true }
},
"_embedded": {
"orders": [{
"_links": {
"self": { "href": "/orders/123" },
"basket": { "href": "/baskets/98712" },
"customer": { "href": "/customers/7809" }
},
"total": 30.00,
"currency": "USD",
"status": "shipped",
},{
"_links": {
"self": { "href": "/orders/124" },
"basket": { "href": "/baskets/97213" },
"customer": { "href": "/customers/12369" }
},
"total": 20.00,
"currency": "USD",
"status": "processing"
}]
},
"currentlyProcessing": 14,
"shippedToday": 20
}
Here, the order list document provides a "next" link directing to the
next page, and a "find" link containing a URI Template which can be
expanded with an 'id' variable to go directly to a specific order.
It also has two embedded resources, "orders". Each of these has its
own links to the associated "basket" and "customer" resources, and
properties showing their "total", "currency" and "status".
Additionally, the order list resource has its own properties
"currentlyProcessing" and "shippedToday".
Kelly Expires 21 April 2024 [Page 7]
Internet-Draft JSON Hypertext Application Language October 2023
7. Media Type Parameters
7.1. profile
The media type identifier application/hal+json MAY also include an
additional "profile" parameter (as defined by [RFC6906])
HAL documents that are served with the "profile" parameter still
SHOULD include a "profile" link belonging to the root resource.
8. Recommendations
8.1. Self Link
Each Resource Object SHOULD contain a 'self' link that corresponds
with the IANA registered 'self' relation (as defined by [RFC5988])
whose target is the resource's URI.
8.2. Link relations
Custom link relation types (Extension Relation Types in [RFC5988])
SHOULD be URIs (or curies) that when dereferenced in a web browser
provide relevant documentation, in the form of an HTML page, about
the meaning and/or behaviour of the target Resource. This will
improve the discoverability of the API.
8.3. HAL curies
HAL etablishes a mechanism called "curies" which allows for link
relation types that are compact and more human readable (eg.
"acme:widgets"), whilst still offering a way that they MAY be
expanded into a dereferencable URI providing documentation (eg.
"https://docs.acme.com/relations/widgets")
To this end, HAL documents have a reserved link relation type called
"curies".
HAL curies are established for a given Resource Object via an array
of Link Objects with the "curies" reserved link relation type. These
links contain a URI Template with the token 'rel', and are named via
the "name" property.
The following demonstrates the relation
"https://docs.acme.com/relations/widgets" being abbreviated to
"acme:widgets" using curies:
Kelly Expires 21 April 2024 [Page 8]
Internet-Draft JSON Hypertext Application Language October 2023
{
"_links": {
"self": { "href": "/orders" },
"curies": [{
"name": "acme",
"href": "https://docs.acme.com/relations/{rel}",
"templated": true
}],
"acme:widgets": { "href": "/widgets" }
}
}
HAL curies can be used to create versioned link relation types like
so:
{
"_links": {
"self": { "href": "/" },
"curies": [{
"name": "v1",
"href": "https://docs.example.com/relations/v1/{rel}",
"templated": true
},{
"name": "v2",
"href": "https://docs.example.com/relations/v2/{rel}",
"templated": true
}],
"v1:orders": {
"href": "https://api.example.com/orders",
"deprecation": "https://dev.example.com/deprecations/v1-orders"
},
"v2:orders": { "href": "https://api.example.com/order-list" }
}
}
In cases where an embedded Resource defines its own curies which
conflict with those of its parent then, for links within this
resource, these are overwritten and SHOULD take precedence over the
curies of the parent.
8.4. Hypertext Cache Pattern
The "hypertext cache pattern" allows servers to use embedded
resources to dynamically reduce the number of requests a client
makes, improving the efficiency and performance of the application.
Kelly Expires 21 April 2024 [Page 9]
Internet-Draft JSON Hypertext Application Language October 2023
Clients MAY be automated for this purpose so that, for any given link
relation, they will read from an embedded resource (if present) in
preference to traversing a link.
To activate this client behaviour for a given link, servers SHOULD
add an embedded resource into the representation with the same
relation.
Servers SHOULD NOT entirely "swap out" a link for an embedded
resource (or vice versa) because client support for this technique is
OPTIONAL.
The following examples shows the hypertext cache pattern applied to
an "author" link:
Before:
{
"_links": {
"self": { "href": "/books/the-way-of-zen" },
"author": { "href": "/people/alan-watts" }
}
}
After:
{
"_links": {
"self": { "href": "/blog-post" },
"author": { "href": "/people/alan-watts" }
},
"_embedded": {
"author": {
"_links": { "self": { "href": "/people/alan-watts" } },
"name": "Alan Watts",
"born": "January 6, 1915",
"died": "November 16, 1973"
}
}
}
9. Security Considerations
This media type does not contain executable content.
Kelly Expires 21 April 2024 [Page 10]
Internet-Draft JSON Hypertext Application Language October 2023
The information contained in the media type does not necessarily
require privacy or integrity services.
The security considerations of the JSON format apply to this media
type.
10. IANA Considerations
No IANA actions required.
11. Normative References
[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate
Requirement Levels", BCP 14, RFC 2119,
DOI 10.17487/RFC2119, March 1997,
<https://www.rfc-editor.org/info/rfc2119>.
[RFC3986] Berners-Lee, T., Fielding, R., and L. Masinter, "Uniform
Resource Identifier (URI): Generic Syntax", STD 66,
RFC 3986, DOI 10.17487/RFC3986, January 2005,
<https://www.rfc-editor.org/info/rfc3986>.
[RFC4627] Crockford, D., "The application/json Media Type for
JavaScript Object Notation (JSON)", RFC 4627,
DOI 10.17487/RFC4627, July 2006,
<https://www.rfc-editor.org/info/rfc4627>.
[RFC5988] Nottingham, M., "Web Linking", RFC 5988,
DOI 10.17487/RFC5988, October 2010,
<https://www.rfc-editor.org/info/rfc5988>.
[RFC6570] Gregorio, J., Fielding, R., Hadley, M., Nottingham, M.,
and D. Orchard, "URI Template", RFC 6570,
DOI 10.17487/RFC6570, March 2012,
<https://www.rfc-editor.org/info/rfc6570>.
[RFC6906] Wilde, E., "The 'profile' Link Relation Type", RFC 6906,
DOI 10.17487/RFC6906, March 2013,
<https://www.rfc-editor.org/info/rfc6906>.
Appendix A. Acknowledgements
Thanks to Darrel Miller, Mike Amundsen, and everyone in hal-discuss
for their suggestions and feedback.
The author takes all responsibility for errors and omissions.
Kelly Expires 21 April 2024 [Page 11]
Internet-Draft JSON Hypertext Application Language October 2023
Appendix B. Frequently Asked Questions
B.1. How should a client know the meaning/structure/semantics/type of a
resource?
There are two main approaches to solving this problem. Both involve
exposing additional documentation describing the resource which may
be human and/or machine readable (i.e. an HTML page and/or a JSON
Schema document). The difference between the two approaches is in
where that URI is shared with the client, which is either:
(1) The URI that was the preceding link relation type.
(2) A 'profile' link from the resource itself.
B.2. Where can I find libraries for working with HAL?
A list of libraries is maintained here:
https://github.com/mikekelly/hal_specification/wiki/Libraries
B.3. Why are the reserved properties prefixed with an underscore?
We elected for a prefix character to minimise risk of collisions with
properties that represent the resource's state, and underscore was
the character picked.
Another reason for prefixing the reserved properties is to make it
visually apparent that the reserved properties are distinct from
standard properties belonging to the resource.
B.4. Are all underscore-prefixed properties reserved?
No, HAL only reserves the names detailed in this specification.
B.5. Why does HAL have no forms?
Omitting forms from HAL was an intentional design decision that was
made to keep it focused on linking for APIs. HAL is therefore a good
candidate for use as a base media type on which to build more complex
capabilities. An additional media type is planned for the future
which will add form-like controls on top of HAL.
Author's Address
Mike Kelly
Stateless
Email: [email protected]
URI: https://stateless.group/
Kelly Expires 21 April 2024 [Page 12]