-
Notifications
You must be signed in to change notification settings - Fork 1
/
draft-ietf-alto-cdni-request-routing-alto.yaml
85 lines (85 loc) · 2.03 KB
/
draft-ietf-alto-cdni-request-routing-alto.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
74
75
76
77
78
79
80
81
82
83
84
85
!Defaults
site: .
---
$schema: "http://json-schema.org/draft-07/schema#"
$id: !Format "{site}/draft-ietf-alto-cdni-request-routing-alto.json"
# See draft-ietf-alto-cdni-request-routing-alto-16
definitions:
InfoResourceCDNIAdvertisement:
allOf:
- $ref: !Format "{site}/rfc7285.json#/definitions/ResponseEntityBase"
- properties:
cdni-advertisement:
$ref: "#/definitions/CDNIAdvertisementData"
required:
- cdni-advertisement
CDNIAdvertisementData:
type: object
properties:
capabilities-with-footprints:
type: array
items:
$ref: "#/definitions/BaseAdvertisementObject"
required:
- capabilities-with-footprints
additionalProperties: true
BaseAdvertisementObject:
type: object
properties:
capability-type:
type: string
capability-value:
anyOf:
- type: string
- type: number
- type: array
- type: boolean
- type: "null"
- type: object
additionalProperties: true
footprints:
type: array
items:
$ref: "#/definitions/Footprint"
required:
- capability-type
- capability-value
- footprints
additionalProperties: true
Footprint:
type: object
properties:
footprint-type:
type: string
footprint-value:
type: array
items:
type: string
minItems: 1
additionalProperties: true
CDNICapability:
type: object
properties:
capability-type:
type: string
capability-value:
anyOf:
- type: string
- type: number
- type: array
- type: boolean
- type: "null"
- type: object
additionalProperties: true
required:
- capability-type
- capability-value
additionalProperties: true
ReqFilteredCDNIAdvertisement:
type: object
properties:
cdni-capabilities:
type: array
items:
$ref: "#/definitions/CDNICapability"
additionalProperties: true