RFC Errata
Found 2 records.
Status: Verified (2)
RFC 8006, "Content Delivery Network Interconnection (CDNI) Metadata", December 2016
Source of RFC: cdni (wit)
Errata ID: 5150
Status: Verified
Type: Technical
Publication Format(s) : TEXT
Reported By: Kevin J. Ma
Date Reported: 2017-10-08
Verifier Name: Alexey Melnikov
Date Verified: 2017-10-18
Section 6.10 says:
"generic-metadata-type": "MI.SourceMetadata", "generic-metadata-value": { "sources": [ { "endpoint": ["acq1.ucdn.example"], "protocol": "http/1.1" }, { "endpoint": ["acq2.ucdn.example"], "protocol": "http/1.1" } ] }
It should say:
"generic-metadata-type": "MI.SourceMetadata", "generic-metadata-value": { "sources": [ { "endpoints": ["acq1.ucdn.example"], "protocol": "http/1.1" }, { "endpoints": ["acq2.ucdn.example"], "protocol": "http/1.1" } ] }
Notes:
The SourceMetadata object contains an array of "sources", which in turn contains an array of "endpoints". The example in section 6.10 uses the singular "endpoint" instead of the plural "endpoints". The examples in sections 4.2.1 and 4.2.1.1 correctly use the plural "endpoints" for the property name, as defined in section 4.2.1.1.
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).