Skip to content

'ietf-netconf-monitoring:get-schema' returns schema with escape sequences #614

@111pontes

Description

@111pontes

'ietf-netconf-monitoring:get-schema' returns schema data with "predefined entities" representing special characters: < (<), & (&), > (>), " ("), and ' ('). The actual characters should be used in the schema Instead of the "predefined entities".

For instance, instead of returning:

module openconfig-bgp {

  yang-version &quot;1&quot;;

  // namespace
  namespace &quot;http://openconfig.net/yang/bgp&quot;;

  prefix &quot;oc-bgp&quot;;
....

The following data should be returned:

module openconfig-bgp {

  yang-version "1";

  // namespace
  namespace "http://openconfig.net/yang/bgp";

  prefix "oc-bgp";
....

Metadata

Metadata

Assignees

Labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions