|
| 1 | +module ietf-example-this-identifier-is-intentionally-designed-to-exceed-64-chars { |
| 2 | + yang-version 1.1; |
| 3 | + namespace "urn:ietf:params:xml:ns:yang:ietf-example-this-identifier-is-intentionally-designed-to-exceed-64-chars"; |
| 4 | + prefix isc; |
| 5 | + |
| 6 | + organization |
| 7 | + "IETF NETMOD Working Group"; |
| 8 | + |
| 9 | + contact |
| 10 | + "WG Web: <https://datatracker.ietf.org/wg/netmod/>"; |
| 11 | + |
| 12 | + description |
| 13 | + "Copyright (c) 2026 IETF Trust and the persons identified as |
| 14 | + authors of the code. All rights reserved. |
| 15 | +
|
| 16 | + Redistribution and use in source and binary forms, with or |
| 17 | + without modification, is permitted pursuant to, and subject |
| 18 | + to the license terms contained in, the Revised BSD License |
| 19 | + set forth in Section 4.c of the IETF Trust's Legal Provisions |
| 20 | + Relating to IETF Documents |
| 21 | + (https://trustee.ietf.org/license-info). |
| 22 | +
|
| 23 | + This version of this YANG module is part of RFC XXXX; see |
| 24 | + the RFC itself for full legal notices."; |
| 25 | + |
| 26 | + revision 2026-07-08 { |
| 27 | + description |
| 28 | + "Initial revision."; |
| 29 | + reference |
| 30 | + "RFC XXXX: Test Module"; |
| 31 | + } |
| 32 | + |
| 33 | + extension this-extension-identifier-is-intentionally-designed-to-exceed-64-chars { |
| 34 | + description |
| 35 | + "Testing extension identifier length."; |
| 36 | + } |
| 37 | + |
| 38 | + feature this-feature-identifier-is-intentionally-designed-to-exceed-64-chars { |
| 39 | + description |
| 40 | + "Testing feature identifier length."; |
| 41 | + } |
| 42 | + |
| 43 | + identity this-identity-identifier-is-intentionally-designed-to-exceed-64-chars { |
| 44 | + description |
| 45 | + "Testing identity identifier length."; |
| 46 | + } |
| 47 | + |
| 48 | + typedef this-typedef-identifier-is-intentionally-designed-to-exceed-64-chars { |
| 49 | + type string; |
| 50 | + description |
| 51 | + "Testing typedef identifier length."; |
| 52 | + } |
| 53 | + |
| 54 | + grouping this-grouping-identifier-is-intentionally-designed-to-exceed-64-chars { |
| 55 | + description |
| 56 | + "Testing grouping identifier length."; |
| 57 | + |
| 58 | + leaf dummy-leaf { |
| 59 | + type string; |
| 60 | + description "Needed a child to make grouping valid."; |
| 61 | + } |
| 62 | + } |
| 63 | + |
| 64 | + container this-container-identifier-is-intentionally-designed-to-exceed-64-chars { |
| 65 | + description |
| 66 | + "Testing data node identifier length."; |
| 67 | + |
| 68 | + leaf enum-tester { |
| 69 | + type enumeration { |
| 70 | + enum this-enum-identifier-is-intentionally-designed-to-exceed-64-chars { |
| 71 | + description |
| 72 | + "Testing enum identifier length."; |
| 73 | + } |
| 74 | + } |
| 75 | + description |
| 76 | + "Leaf to hold the long enum."; |
| 77 | + } |
| 78 | + |
| 79 | + leaf bits-tester { |
| 80 | + type bits { |
| 81 | + bit this-bit-identifier-is-intentionally-designed-to-exceed-64-chars { |
| 82 | + description |
| 83 | + "Testing bit identifier length."; |
| 84 | + } |
| 85 | + } |
| 86 | + description |
| 87 | + "Leaf to hold the long bit."; |
| 88 | + } |
| 89 | + } |
| 90 | +} |
0 commit comments