-
Notifications
You must be signed in to change notification settings - Fork 0
/
HAL.yaml
73 lines (66 loc) · 2.18 KB
/
HAL.yaml
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
openapi: 3.0.0
info:
title: HAL components + voor HAL resources
description: Specificatie van de HAL components + voorbeeld resources die gebruik maken van de HAL components
version: '1'
components:
schemas:
Href:
description: Deze niet gebruiken omdat editor.swagger.io niet de correcte code genereert
type: string
format: uri
example: "datapunt.voorbeeldgemeente.nl/api/v1/resourcename/123456789"
HalLink:
description: De Link Object zoals gespecificeerd in https://tools.ietf.org/html/draft-kelly-json-hal-08#section-5
type: object
required:
- href
properties:
href:
type: string
format: uri
templated:
type: boolean
nullable: true
type:
type: string
deprecation:
type: string
format: uri
name:
type: string
profile:
type: string
format: uri
title:
type: string
hreflang:
type: string
HalSelfLink:
description: property voor een resource die alleen een self link heeft
type: object
required:
- self
properties:
self:
$ref: "#/components/schemas/HalLink"
HalCollectionLink:
description: properties voor een resources collection. M.b.v. de find property kan een url template aangegeven waarmee een specifieke resource (in de collectie) kan worden bevraagd. Zie https://tools.ietf.org/html/draft-kelly-json-hal-08#section-6 voor een voorbeeld
allOf:
- $ref: "#/components/schemas/HalSelfLink"
- type: object
properties:
find:
$ref: "#/components/schemas/HalLink"
HalPaginationLinks:
description: properties voor een resources collection waarbij paginering wordt ondersteund
allOf:
- $ref: "#/components/schemas/HalCollectionLink"
- type: object
properties:
first:
$ref: "#/components/schemas/HalLink"
previous:
$ref: "#/components/schemas/HalLink"
next:
$ref: "#/components/schemas/HalLink"