RFC Errata
RFC 8006, "Content Delivery Network Interconnection (CDNI) Metadata", December 2016
Source of RFC: cdni (wit)See Also: RFC 8006 w/ inline errata
Errata ID: 7657
Status: Verified
Type: Technical
Publication Format(s) : TEXT
Reported By: Kazuki Takashima
Date Reported: 2023-09-26
Verifier Name: Francesca Palombini
Date Verified: 2023-11-07
Section 6.10 says:
{
"metadata": [
{
"generic-metadata-type": "MI.TimeWindowACL",
"generic-metadata-value": {
"times": [
"windows": [
{
"start": "1213948800",
"end": "1478047392"
}
],
"action": "allow"
]
}
}
]
}
It should say:
{
"metadata": [
{
"generic-metadata-type": "MI.TimeWindowACL",
"generic-metadata-value": {
"times": [
{
"windows": [
{
"start": 1213948800,
"end": 1478047392
}
],
"action": "allow"
}
]
}
}
]
}
Notes:
1. The "times" property of the TimeWindowACL object has an array of TimeWindowRule type, so I changed it to "windows" and "action" are contained in braces.
2. The "start" and "end" property of the TimeWindow object have a Time type, which is an alias of Integer. So I changed their values ("1213948800", "1478047392") to Integer (1213948800, 1478047392).
