Internet-Draft | https-notif-cbor | July 2025 |
Chittapragada, et al. | Expires 25 January 2026 | [Page] |
This document extends [I-D.draft-ietf-netconf-https-notif] by introducing CBOR encoding for YANG notifications over HTTPS Transport in addition to the existing JSON and XML encoding schemes.¶
This note is to be removed before publishing as an RFC.¶
The latest revision of this draft can be found at https://MeherRushi.github.io/draft-chittapragada-netconf-https-notif-cbor/draft-chittapragada-netconf-https-notif-cbor.html. Status information for this document may be found at https://datatracker.ietf.org/doc/draft-chittapragada-netconf-https-notif-cbor/.¶
Discussion of this document takes place on the Network Configuration mailing list (mailto:netconf@ietf.org), which is archived at https://mailarchive.ietf.org/arch/browse/netconf/. Subscribe at https://www.ietf.org/mailman/listinfo/netconf/.¶
Source for this draft and an issue tracker can be found at https://github.com/MeherRushi/draft-chittapragada-netconf-https-notif-cbor.¶
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 25 January 2026.¶
Copyright (c) 2025 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.¶
CBOR offers an efficient and compact representation of YANG.¶
This document introduces a CBOR encoding scheme for event notifications over HTTPS by using the framework proposed in [I-D.draft-ietf-netconf-https-notif] which supports transfer of YANG notifications over HTTPS using JSON and XML encoding schemes.¶
In [I-D.draft-ietf-netconf-https-notif], the capabilities HTTP-target resource allows a publisher to retrieve supported encoding formats via GET requests, while the relay-notification resource enables the publisher to send YANG notifications via POST requests. These requests and responses use different content types based on the selected encoding scheme. This document defines support for using CBOR encoding defined in section 1 of [I-D.draft-ietf-netconf-https-notif]¶
Examples of the GET and POST request and reply encoded in CBOR are also provided.¶
This document uses the following terms defined in Section 2,3 and 4 of [I-D.draft-ietf-netconf-https-notif]:¶
The following term(s) are defined in Subscription to YANG Notifications [RFC8639]:¶
The following term(s) are defined in Encoding of Data Modeled with YANG in the Concise Binary Object Representation (CBOR) [RFC9254]:¶
YANG notifications can be encoded in CBOR using Names or SIDs in keys. Notifications encoded using names is similar to JSON encoding as defined in Section 3.4 and 4.3 of [I-D.draft-ietf-netconf-https-notif]. Notification encoded using YANG-SIDs replaces the names of the keys of the CBOR encoded message with a 63 bit unsigned integer. In this case, the term 'SID' is defined in Section 3.2 of [RFC9254], and the keys of the encoded data use SID value as mentioned in 4.3.2 of this document.¶
The publisher sends a request to the receiver to learn its capabilities. In the below example, the “Accept” states that the publisher wants to receive the capabilities response in CBOR but if not supported then in XML or JSON in that order.¶
GET /some/path/capabilities HTTP/1.1 Host: example.com Accept: application/cbor, application/xml;0.5, application/json;q=0.9¶
If the receiver is able to reply using “application/cbor” and assuming it is only capable of receiving CBOR encoded messages the response would look like this¶
Diagnostic Notation:¶
{ "receiver-capabilities": { "receiver-capability": [ "urn:ietf:capability:https-notif-receiver:encoding:cbor" ] } }¶
CBOR Encoding:¶
A1 # map(1) 75 # text(21) 72656365697665722D6361706162696C6974696573 # "receiver-capabilities" A1 # map(1) 73 # text(19) 72656365697665722D6361706162696C697479 # "receiver-capability" 81 # array(1) 78 36 # text(54) 75726E3A696574663A6361706162696C6974793A68747470732D6E6F7469662D72656365697665723A656E636F64696E673A63626F72 # "urn:ietf:capability:https-notif-receiver:encoding:cbor"¶
If the receiver is able to reply using “application/cbor” and assuming it is not capable of receiving cbor, but can receive both json and xml notifications:¶
Diagnostic Notation:¶
{ "receiver-capabilities": { "receiver-capability": [ "urn:ietf:capability:https-notif-receiver:encoding:json", "urn:ietf:capability:https-notif-receiver:encoding:xml" ] } }¶
CBOR Encoding:¶
A1 # map(1) 75 # text(21) 72656365697665722D6361706162696C6974696573 # "receiver-capabilities" A1 # map(1) 73 # text(19) 72656365697665722D6361706162696C697479 # "receiver-capability" 82 # array(2) 78 36 # text(54) 75726E3A696574663A6361706162696C6974793A68747470732D6E6F7469662D72656365697665723A656E636F64696E673A6A736F6E # "urn:ietf:capability:https-notif-receiver:encoding:json" 78 35 # text(53) 75726E3A696574663A6361706162696C6974793A68747470732D6E6F7469662D72656365697665723A656E636F64696E673A786D6C # "urn:ietf:capability:https-notif-receiver:encoding:xml"¶
If the receiver is unable to reply using "application/cbor", but is capable of receiving only cbor then the response might look like this:¶
The publisher sends an HTTP POST request to the "relay-notification" resource on the receiver with the "Content-Type" header set to "application/cbor" in case the receiver is CBOR capable and a body containing the notification encoded in CBOR.¶
POST /some/path/relay-notification HTTP/1.1 Host: example.com Content-Type: application/cbor¶
Diagnostic notation:¶
{ "ietf-https-notif:notification": { "eventTime": "2013-12-21T00:01:00Z", "example-mod:event" : { "event-class" : "fault", "reporting-entity" : { "card" : "Ethernet0" }, "severity" : "major" } } }¶
Cbor Encoding:¶
A1 # map(1) 78 1D # text(29) 696574662D68747470732D6E6F7469663A6E6F74696669636174696F6E # "ietf-https-notif:notification" A2 # map(2) 69 # text(9) 6576656E7454696D65 # "eventTime" 74 # text(20) 323031332D31322D32315430303A30313A30305A # "2013-12-21T00:01:00Z" 71 # text(17) 6578616D706C652D6D6F643A6576656E74 # "example-mod:event" A3 # map(3) 68 # text(8) 7365766572697479 # "severity" 65 # text(5) 6D616A6F72 # "major" 6B # text(11) 6576656E742D636C617373 # "event-class" 65 # text(5) 6661756C74 # "fault" 70 # text(16) 7265706F7274696E672D656E74697479 # "reporting-entity" A1 # map(1) 64 # text(4) 63617264 # "card" 69 # text(9) 45746865726E657430 # "Ethernet0"¶
Diagnostic Notation:¶
{ 2601: { 1: "2013-12-21T00:01:00Z", "example-mod:event" : { "event-class" : "fault", "reporting-entity" : { "card" : "Ethernet0" }, "severity" : "major" } } }¶
The above is assuming the YANG module for event notifications has a corresponding .sid file with these entries¶
"item": [ { "namespace": "module", "identifier": "ietf-notification", "sid": "2600" }, { "namespace": "data", "identifier": "/ietf-notification:notification", "sid": "2601" }, { "namespace": "data", "identifier": "/ietf-notification:notification/eventTime", "sid": "2602" } ]¶
CBOR Encoding:¶
A1 # map(1) 19 0A28 # unsigned(2600) A2 # map(2) 01 # unsigned(1) 74 # text(20) 323031332D31322D32315430303A30313A30305A # "2013-12-21T00:01:00Z" 71 # text(17) 6578616D706C652D6D6F643A6576656E74 # "example-mod:event" A3 # map(3) 68 # text(8) 7365766572697479 # "severity" 65 # text(5) 6D616A6F72 # "major" 6B # text(11) 6576656E742D636C617373 # "event-class" 65 # text(5) 6661756C74 # "fault" 70 # text(16) 7265706F7274696E672D656E74697479 # "reporting-entity" A1 # map(1) 64 # text(4) 63617264 # "card" 69 # text(9) 45746865726E657430 # "Ethernet0"¶
The response on success is "204 (No Content)". In case of corrupted or malformed event, the response is an appropriate HTTP error response.¶
This section records the status of known implementations of the specification defined by this document at the time of posting. The information is provided to assist the IETF in evaluating the maturity and implementability of the specification. This section will be removed prior to publication as an RFC.¶
Organization: National Institute of Technology Karnataka (NITK), Surathkal¶
Implementation Name / Web Page: HTTPS Notification CBOR Draft Implementation https://github.com/MeherRushi/https-notif-draft-impl¶
Description: This implementation provides a Python-based prototype of the mechanism defined in this document for transporting YANG notifications over HTTPS using JSON, XML and CBOR encoding. It supports name-based CBOR encoding (for now) and includes basic publisher and receiver roles to demonstrate end-to-end message exchange.¶
Maturity Level: Prototype¶
Coverage:¶
Version Compatibility: The implementation is based on draft-ietf-netconf-https-notif-15 and draft-chittapragada-netconf-https-notif-cbor-03.¶
Licensing: Freely distributable under an MIT-style license.¶
Implementation Experience:¶
Developed and demonstrated at IETF 121 and 122 Hackathon.¶
Worked toward enabling CBOR encoding in the libyang library as part of the hackathon effort (slides).¶
Evaluated CBOR efficiency compared to JSON and XML in constrained environments.¶
Built tooling to simulate and measure notification transfer behavior over varying network conditions.¶
Diagnostic encoding examples used for validation of CBOR structures.¶
Contact Information:¶
Last Updated: July 24, 2025¶
Addition of the CBOR encoding introduces no specific security exposures or risks other that the ones mentioned in [RFC9254] and [I-D.draft-ietf-netconf-https-notif] (An HTTPS-based Transport for YANG Notifications)¶
This document requests that IANA include an additional entry in the “Capabilities for HTTPS Notification Receivers” registry, defined in [I-D.draft-ietf-netconf-https-notif], within the YANG Notifications registry group (as defined in [RFC3553]). The following entry is added:¶
Record: URN: urn:ietf:params:yang-notif:https-capability:encoding:cbor Reference: RFC XXXX:An HTTPS-based Transport for YANG Notifications Description: Identifies support for CBOR-encoded notifications.¶
The authors acknowledge the support of Kent Watsen and Mahesh Jethanandani, the authors of [I-D.draft-ietf-netconf-https-notif] for their guidance and support provided to draft this document.¶