/usr/share/yuma/modules/netconfcentral/yuma-xsd.yang is in libyuma-base 2.10-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 | module yuma-xsd {
namespace "http://www.w3.org/2001/XMLSchema";
prefix "xsd";
organization
"Netconf Central";
contact
"Andy Bierman <andy@netconfcentral.org>";
description
"XSD derived types for usage in YANG.";
revision 2009-11-21 {
description
"Rename xsd to yuma-xsd.";
}
revision 2007-12-06 {
description
"Initial revision. There is more work to do
filling in patterns for some of the string types";
}
// The string data type is a YANG builtin type and not
// available in this module.
typedef normalizedString {
description
"XSD normalized string";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028' +
'/datatypes.html#normalizedString';
type string;
}
typedef token {
description
"XSD token string";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#token';
type string;
}
typedef base64Binary {
description
"XSD base64 binary encoded string";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#base64Binary';
type string;
}
typedef hexBinary {
description
"XSD hex binary encoded string";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#hexBinary';
type binary;
}
typedef integer {
description
"XSD unbounded integer type.
This cannot be given a range like a number.
This pattern does not supoort string representations
of numbers, such as one two three";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#integer';
type string {
pattern '[\-+]?[0-9]+';
}
}
typedef positiveInteger {
description
"XSD unbounded positive integer.
This cannot be given a range like a number.
This pattern does not supoort string representations
of numbers, such as one two three";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#positiveInteger';
type string {
pattern '[\+]?[1-9]+[0-9]*';
}
}
typedef negativeInteger {
description
"XSD unbounded negative integer.
This cannot be given a range like a number.
This pattern does not supoort string representations
of numbers, such as one two three";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#negativeInteger';
type string {
pattern '[\-]?[1-9]+[0-9]*';
}
}
typedef nonNegativeInteger {
description
"XSD unbounded non-negative integer.
This cannot be given a range like a number.
This pattern does not supoort string representations
of numbers, such as one two three";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#nonNegativeInteger';
type string {
pattern '[\+]?[0-9]*';
}
}
typedef nonPositiveInteger {
description
"XSD unbounded non-positive integer.
This cannot be given a range like a number.
This pattern does not supoort string representations
of numbers, such as one two three";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#nonPositiveInteger';
type string {
pattern '\-[1-9]+[0-9]*';
}
}
typedef long {
description
"XSD 64 bit signed integer.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#long';
type int64;
}
typedef unsignedLong {
description
"XSD 64 bit unsigned integer.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#unsignedLong';
type uint64;
}
typedef int {
description
"XSD 32 bit signed integer.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#int';
type int32;
}
typedef unsignedInt {
description
"XSD 32 bit unsigned integer.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#unsignedInt';
type uint32;
}
typedef short {
description
"XSD 16 bit signed integer.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#short';
type int16;
}
typedef unsignedShort {
description
"XSD 16 bit unsigned integer.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#unsignedShort';
type uint16;
}
typedef byte {
description
"XSD 8 bit signed integer.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#byte';
type int8;
}
typedef unsignedByte {
description
"XSD 8 bit unsigned integer.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#unsignedByte';
type uint8;
}
typedef decimal {
description
"XSD decimal data type.
[To do: not sure if this is a bounded real number
or an unbounded real number.].";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#decimal';
type string;
}
// The boolean type is a builtin type in YANG so it
// not available in this XSD module.
typedef duration {
description
"XSD duration string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#duration';
type string;
}
typedef dateTime {
description
"XSD date and time string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#dateTime';
type string {
// adapted date-and-time pattern
pattern '-?\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}(\.\d+)?'
+ '(Z|(\+|-)\d{2}:\d{2})';
}
}
typedef date {
description
"XSD date string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#date';
type string;
}
typedef time {
description
"XSD time string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#time';
type string;
}
typedef gYear {
description
"XSD year string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#gYear';
type string;
}
typedef gYearMonth {
description
"XSD year and month string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#gYearMonth';
type string;
}
typedef gMonth {
description
"XSD month string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#gMonth';
type string;
}
typedef gMonthDay {
description
"XSD month and day string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#gMonthDay';
type string;
}
typedef gDay {
description
"XSD day string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#gDay';
type string;
}
typedef Name {
description
"XSD name string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#Name';
type string;
}
typedef QName {
description
"XSD namespace-qualified name string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#QName';
type string;
}
typedef NCName {
description
"XSD not-namespace-qualified name string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#NCName';
type string {
pattern '[\i-[:]][\c-[:]]*';
}
}
typedef anyURI {
description
"XSD universal resource identifier string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#anyURI';
type string;
}
typedef language {
description
"XSD language identifier string type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#language';
type string;
}
typedef ID {
description
"XSD ID attribute type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#ID';
type string;
}
typedef IDREF {
description
"XSD IDREF attribute type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#IDREF';
type string;
}
typedef IDREFS {
description
"XSD IDREFS attribute type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#IDREFS';
type string;
}
typedef ENTITY {
description
"XSD ENTITY attribute type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#ENTITY';
type string;
}
typedef ENTITIES {
description
"XSD ENTITIES attribute type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#ENTITIES';
type string;
}
typedef NOTATION {
description
"XSD NOTATION attribute type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#NOTATION';
type string;
}
typedef NMTOKEN {
description
"XSD NMTOKEN attribute type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#NMTOKEN';
type string;
}
typedef NMTOKENS {
description
"XSD NMTOKENS attribute type.";
reference
'http://www.w3.org/TR/2004/REC-xmlschema-2-20041028/' +
'datatypes.html#NMTOKENS';
type string;
}
}
|