Protocol Action: 'Common YANG Data Types' to Proposed Standard

The IESG <iesg-secretary@ietf.org> Thu, 10 June 2010 16:18 UTC

Return-Path: <wwwrun@core3.amsl.com>
X-Original-To: ietf-announce@ietf.org
Delivered-To: ietf-announce@core3.amsl.com
Received: by core3.amsl.com (Postfix, from userid 30) id 90A253A6A16; Thu, 10 Jun 2010 09:18:01 -0700 (PDT)
X-idtracker: yes
From: The IESG <iesg-secretary@ietf.org>
To: IETF-Announce <ietf-announce@ietf.org>
Subject: Protocol Action: 'Common YANG Data Types' to Proposed Standard
Message-Id: <20100610161801.90A253A6A16@core3.amsl.com>
Date: Thu, 10 Jun 2010 09:18:01 -0700
Cc: Internet Architecture Board <iab@iab.org>, netmod chair <netmod-chairs@tools.ietf.org>, netmod mailing list <netmod@ietf.org>, RFC Editor <rfc-editor@rfc-editor.org>
X-BeenThere: ietf-announce@ietf.org
X-Mailman-Version: 2.1.9
Precedence: list
List-Id: "IETF announcement list. No discussions." <ietf-announce.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/listinfo/ietf-announce>, <mailto:ietf-announce-request@ietf.org?subject=unsubscribe>
List-Archive: <http://www.ietf.org/mail-archive/web/ietf-announce>
List-Post: <mailto:ietf-announce@ietf.org>
List-Help: <mailto:ietf-announce-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/ietf-announce>, <mailto:ietf-announce-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 10 Jun 2010 16:18:01 -0000

The IESG has approved the following document:

- 'Common YANG Data Types '
   <draft-ietf-netmod-yang-types-09.txt> as a Proposed Standard


This document is the product of the NETCONF Data Modeling Language Working Group. 

The IESG contact persons are Dan Romascanu and Ron Bonica.

A URL of this Internet-Draft is:
http://www.ietf.org/internet-drafts/draft-ietf-netmod-yang-types-09.txt

Technical Summary

  YANG is a data modeling language used to model
  configuration and state data manipulated by the NETCONF
  protocol.  The YANG language supports a small set of
  built-in data types and provides mechanisms to derive
  other types from the built-in types.

  This document introduces a collection of common data
  types derived from the built-in YANG data types.  The
  definitions are organized in several YANG modules.  The
  "ietf-yang-types" module contains generally useful data
  types.  The "ietf-inet-types" module contains
  definitions that are relevant for the Internet protocol
  suite.

Working Group Summary

  Consensus was reached among all interested parties before
  requesting the publication of this document.


Document Quality

  There are multiple independent implementations of YANG today, both 
  commercial and freely-available code and verification tools.


Personnel

  David Partain is the document shepherd. Dan Romascanu is the 
  responsible AD. 

RFC Editor Note

Section 3., paragraph 45:
OLD:

    typedef date-and-time {
      type string {
        pattern '\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?'
              + '(Z|[\+|-]\d{2}:\d{2})';
      }
      description
       "The date-and-time type is a profile of the ISO 8601
        standard for representation of dates and times using the
        Gregorian calendar. The profile is defined by the
        date-time production in section 5.6 of RFC 3339.

NEW:

    typedef date-and-time {
      type string {
        pattern '\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?'
              + '(Z|[\+\-]\d{2}:\d{2})';
      }
      description
       "The date-and-time type is a profile of the ISO 8601
        standard for representation of dates and times using the
        Gregorian calendar. The profile is defined by the
        date-time production in section 5.6 of RFC 3339.