'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 "1";
// namespace
namespace "http://openconfig.net/yang/bgp";
prefix "oc-bgp";
....
The following data should be returned:
module openconfig-bgp {
yang-version "1";
// namespace
namespace "http://openconfig.net/yang/bgp";
prefix "oc-bgp";
....