Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix yang namespace URI to openconfig.net (#1111) #1112

Merged
merged 1 commit into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module openconfig-terminal-device-properties {
yang-version "1";

// namespace
namespace "http://example.net/yang/openconfig-terminal-device-properties";
namespace "http://openconfig.net/yang/openconfig-terminal-device-properties";
prefix "oc-opt-term-properties";

import openconfig-extensions { prefix oc-ext; }
Expand All @@ -35,10 +35,16 @@ module openconfig-terminal-device-properties {
the OTSi (OTSiMC). It also includes (optional) aspects such as
filter characterization, CD and DGD tolerance.";

oc-ext:openconfig-version "0.1.1";
oc-ext:openconfig-version "0.1.2";


// Revisions
revision "2024-05-15" {
description
"Fix yang namespace URI to openconfig.net.";
reference "0.1.2";
}

revision "2023-12-13" {
description
"Add reference to the terminal-device-properties-guide.md doc for operational-modes.";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module openconfig-terminal-device-property-types {
yang-version "1";

// namespace
namespace "http://example.net/yang/openconfig-terminal-device-property-types";
namespace "http://openconfig.net/yang/openconfig-terminal-device-property-types";
prefix "oc-opt-term-prop-types";

import openconfig-extensions { prefix oc-ext; }
Expand All @@ -29,10 +29,16 @@ module openconfig-terminal-device-property-types {
definitions of the set of modulation format, FEC codes and adjustment
granularity types use in the reffered model.";

oc-ext:openconfig-version "0.1.0";
oc-ext:openconfig-version "0.1.1";


// Revisions
revision "2024-05-15" {
description
"Fix yang namespace URI to openconfig.net.";
reference "0.1.1";
}

revision "2022-03-08" {
description "Initial version to provide the initial set of identities
used in the openconfig-terminal-device-properties model.";
Expand Down
Loading