File size: 46,814 Bytes
8c763fb | 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 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 | <?xml version="1.0" encoding="utf-8"?>
<!-- ##################################################################
Copyright (c) Microsoft Corporation.
Licensed under the MIT License.
################################################################### -->
<!DOCTYPE schema [
<!ENTITY csharpIdentifierLetterCharacterRegex "\p{Lu}\p{Ll}\p{Lt}\p{Lm}\p{Lo}\p{Nl}">
<!ENTITY csharpIdentifierFirstCharacterRegex "&csharpIdentifierLetterCharacterRegex;_">
<!ENTITY csharpIdentifierOtherCharacterRegex "&csharpIdentifierLetterCharacterRegex;\p{Nd}_">
<!ENTITY csharpIdentifierRegex "[&csharpIdentifierFirstCharacterRegex;][&csharpIdentifierOtherCharacterRegex;]{0,100}">
<!ENTITY csharpNamespaceRegex "(&csharpIdentifierRegex;)(\.&csharpIdentifierRegex;){0,10}">
<!ENTITY clrTypeSpecialCharacterRegex "\,\=\ \+\&\*\[\]\.\\\-\"">
<!ENTITY clrTypeRegex "[&csharpIdentifierOtherCharacterRegex;&clrTypeSpecialCharacterRegex;]{1,1000}">
<!ENTITY powerShellVerbCharacterRegex "\p{Ll}\p{Lu}\p{Lt}\p{Lo}\p{Lm}">
<!ENTITY powerShellNounCharacterRegex "&powerShellVerbCharacterRegex;\p{Nd}">
<!ENTITY powerShellAliasCharacterRegex "&powerShellNounCharacterRegex;_-">
<!ENTITY powerShellCmdletParameterCharacterRegex "&powerShellNounCharacterRegex;_">
<!ENTITY powerShellVerbRegex "[&powerShellVerbCharacterRegex;]{1,100}">
<!ENTITY powerShellNounRegex "[&powerShellNounCharacterRegex;]{1,100}">
<!ENTITY powerShellAliasRegex "[&powerShellAliasCharacterRegex;]{1,100}">
<!ENTITY powerShellCmdletParameterRegex "[&powerShellCmdletParameterCharacterRegex;]{1,100}">
<!ENTITY powerShellParameterSetRegex "[^,;]{1,100}">
]>
<!--
csharpIdentifierRegex based on C# Language Specification 3.0, section 2.4.2 Idenfifiers
- the C# spec allows \p{Pc}\p{Cf}\p{Mn}\{Mc} in csharpIdentifierOtherCharacterRegex,
but those characters classes seem risky wrt code injection attacks, so they were
removed above.
- '_' (ASCII 95) is the only character in \p{Pc} class out of the first 0..255 characters
- No characters in the first 0..255 characters belong to \p{Cf}, \p{Mn}, \p{Mc}
clrTypeRegex and clrTypeSpecialCharacterRegex are based on https://learn.microsoft.com/dotnet/framework/reflection-and-codedom/specifying-fully-qualified-type-names
clrTypeSpecialCharacterRegex includes the following characters;
- ',' - part of ReflectionDimension and TypeName productions in BNF
- '=' - part of AssemblyProperty production in BNF
- ' ' - unspecified in the docs, but apparently allowed (i.e. between NamespaceTypeName and AssemblyNameSpec in the TypeName production
- '+' - part of NestedTypeName production in BNF
- '&' - part of ReferenceTypeSpec production in BNF
- '*' - part of ReflectionDimension production in BNF
- '[' and ']' - part of ArrayTypeSpec production in BNF
- '.' - part of ReflectionDimension and NamespaceTypeName productions in BNF
- '\' - an escape character
- '-' - required for Culture property of an Assembly.
RFC-1766 defines the format of a culture identifier as:
Language-Tag = Primary-tag *( "-" Subtag )
Primary-tag = 1*8ALPHA
Subtag = 1*8ALPHA
- '"' - unspecified in the docs, but used in the examples (i.e. Culture="")
-->
<xsd:schema
elementFormDefault="qualified"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:cps="http://schemas.microsoft.com/cmdlets-over-objects/2009/11"
targetNamespace="http://schemas.microsoft.com/cmdlets-over-objects/2009/11"
>
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
This schema defines the format of PowerShell CIM Modules.
A PowerShell CIM Module defines a set of cmdlets that interact with a CIM class.
A PowerShell CIM Module needs to be saved in a file with ".cdxml" extension.
A ".cdxml" file can be imported into a PowerShell session directly by Import-Module cmdlet,
or by referring to the ".cdxml" file from NestedModules or RootModule entry of
a module manifest (a ".psd1" file) and then importing the ".psd1" file by Import-Module cmdlet.
</xsd:documentation>
</xsd:annotation>
<xsd:element name="PowerShellMetadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Class" type="cps:ClassMetadata" />
<xsd:element name="Enums" type="cps:EnumMetadata" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
<xsd:key name="UniqueNamesOfEnums">
<xsd:selector xpath=".//cps:Enums/cps:Enum" />
<xsd:field xpath="@EnumName" />
</xsd:key>
<xsd:unique name="UniqueCmdletAliases">
<xsd:selector xpath=".//cps:CmdletMetadata" />
<xsd:field xpath="@Aliases" />
</xsd:unique>
</xsd:element>
<!-- ############################################################ -->
<!-- # ENUM ##################################################### -->
<xsd:complexType name="EnumMetadata">
<xsd:sequence>
<xsd:element name="Enum" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Value" maxOccurs="unbounded">
<xsd:complexType>
<xsd:attribute name="Name" type="cps:EnumValueName" use="required" />
<xsd:attribute name="Value" type="xsd:integer" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="EnumName" type="cps:EnumTypeName" use="required">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
EnumName attribute specifies the name of a .NET enum.
This is the name to use in a PSType attribute.
The name should include a namespace to avoid naming conflicts
(i.e. the name should be "Networking.MyEnum" rather than "MyEnum").
The system will prefix the name of the enum with the following namespace: "Microsoft.PowerShell.Cmdletization.GeneratedTypes"
(i.e. "Networking.MyEnum" will become "Microsoft.PowerShell.Cmdletization.GeneratedTypes.Networking.MyEnum").
When referring to the enum in types.ps1xml and format.ps1xml files, one has to use the full, prefixed name of the enum.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="UnderlyingType" type="cps:PowerShellTypeIdentifier" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
Underlying type of the enum.
C# Language Specification allows (in section 4.1.9 "Enumeration types") only the following
underlying types:
byte (System.Byte),
sbyte (System.SByte),
short (System.Int16),
ushort (System.UInt16),
int (System.Int32),
uint (System.UInt32),
long (System.Int64),
ulong (System.UInt64).
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="BitwiseFlags" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
BitwiseFlags attribute specifies if the .NET enum will be decorated with a System.FlagsAttribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:key name="UniqueNamesOfEnumValues">
<xsd:selector xpath=".//cps:Value" />
<xsd:field xpath="@Name" />
</xsd:key>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<!-- ############################################################ -->
<!-- # CLASS #################################################### -->
<xsd:complexType name="ClassMetadata">
<xsd:sequence>
<xsd:element name="Version" type="cps:VersionString">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
Version element is semantically equivalent to the ModuleVersion entry in a module manifest (psd1) file.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="DefaultNoun" type="cps:Noun">
<xsd:annotation>
<xsd:documentation>
DefaultNoun element specified the default noun for cmdlets defined in this document.
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="InstanceCmdlets" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="GetCmdletParameters" type="cps:GetCmdletParameters">
<xsd:unique name="UniqueCmdletParameterNamesUnderGetCmdletParametersElement_1">
<xsd:selector xpath=".//cps:CmdletParameterMetadata" />
<xsd:field xpath="@PSName" />
</xsd:unique>
<xsd:unique name="UniqueCmdletParameterAliasesUnderGetCmdletParametersElement_1">
<xsd:selector xpath=".//cps:CmdletParameterMetadata" />
<xsd:field xpath="@Aliases" />
</xsd:unique>
</xsd:element>
<xsd:element name="GetCmdlet" type="cps:GetCmdletMetadata" minOccurs="0" />
<xsd:element name="Cmdlet" type="cps:InstanceCmdletMetadata" minOccurs="0" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="StaticCmdlets" minOccurs="0">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="Cmdlet" type="cps:StaticCmdletMetadata">
<xsd:unique name="UniqueParameterSetNamesInStaticCmdlet">
<xsd:selector xpath=".//cps:Method" />
<xsd:field xpath="@CmdletParameterSet" />
</xsd:unique>
<xsd:keyref name="DefaultCmdletParameterSetKeyRef" refer="cps:UniqueParameterSetNamesInStaticCmdlet">
<xsd:selector xpath=".//cps:CmdletMetadata" />
<xsd:field xpath="@DefaultCmdletParameterSet" />
</xsd:keyref>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
<xsd:element name="CmdletAdapterPrivateData" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Data" maxOccurs="unbounded">
<xsd:complexType>
<xsd:simpleContent>
<xsd:extension base="xsd:string">
<xsd:attribute name="Name" type="cps:NonEmptyString" use="required" />
</xsd:extension>
</xsd:simpleContent>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:key name="UniqueNamesOfPrivateDataElements">
<xsd:selector xpath=".//cps:Data" />
<xsd:field xpath="@Name" />
</xsd:key>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="CmdletAdapter" type="cps:PowerShellTypeIdentifier" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
CmdletAdapter attribute specifies which .NET class is responsible for translating
cmdlet invocations into queries and method invocations.
If this attribute is ommited, then by default the cmdlets are translated into WMI queries and method invocations.
The class specified here has to be derived from Microsoft.PowerShell.Cmdletization.CmdletAdapter class.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ClassName" type="cps:NonEmptyString" use="required">
<xsd:annotation>
<xsd:documentation>
ClassName attribute specified the class that the cmdlets work against.
Example: "root/cimv2/Win32_Process"
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ClassVersion" type="cps:NonEmptyString" use="optional">
<xsd:annotation>
<xsd:documentation>
ClassVersion attribute describes the version of the implementation of the class from the ClassName attribute.
Contents of the ClassVersion attribute are passed without interpretation inside
WMI's custom operation option named "MI_OPERATIONOPTIONS_PROVIDERVERSION".
WMI infrastructure will compare this value against the contents of the [ClassVersion] qualifier of the WMI class
and provide descriptive error message if it cannot invoke the WMI provider - i.e. if the client attempts to use a non-existant method, property or parameter).
If WMI infrastructure can invoke the WMI provider, then the provider is responsible for further versioning decisions.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<!-- ############################################################ -->
<!-- # CMDLETS ################################################## -->
<xsd:complexType name="InstanceCmdletMetadata">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
Cmdlet element under InstanceCmdlets element defines a cmdlet that wraps an instance method.
Cmdlet parameters of a cmdlet defined this way are a sum of
1) cmdlet parameters defined through GetCmdletParameters elements
2) cmdlet parameters mapped to input parameters of the method defined by Method element
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="CmdletMetadata" type="cps:CommonCmdletMetadata" />
<xsd:element name="Method" type="cps:InstanceMethodMetadata">
<xsd:unique name="UniqueCmdletParameterNamesUnderMethodElement_1">
<xsd:selector xpath=".//cps:CmdletParameterMetadata" />
<xsd:field xpath="@PSName" />
</xsd:unique>
</xsd:element>
<xsd:element name="GetCmdletParameters" type="cps:GetCmdletParameters" minOccurs="0">
<xsd:unique name="UniqueCmdletParameterNamesUnderGetCmdletParametersElement_2">
<xsd:selector xpath=".//cps:CmdletParameterMetadata" />
<xsd:field xpath="@PSName" />
</xsd:unique>
<xsd:unique name="UniqueCmdletParameterAliasesUnderGetCmdletParametersElement_2">
<xsd:selector xpath=".//cps:CmdletParameterMetadata" />
<xsd:field xpath="@Aliases" />
</xsd:unique>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="StaticCmdletMetadata">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
Cmdlet element under StaticCmdlets element defines a cmdlet that wraps one or more static methods.
Cmdlet parameters of a cmdlet defined this way are mapped to input parameters of methods defined by Method element
Each wrapped method corresponds to a parameter set of the cmdlet.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="CmdletMetadata">
<xsd:complexType>
<xsd:complexContent>
<xsd:extension base="cps:CommonCmdletMetadata">
<xsd:attribute name="DefaultCmdletParameterSet" type="cps:ParameterSetName" use="optional" />
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:element>
<xsd:element name="Method" type="cps:StaticMethodMetadata" maxOccurs="unbounded">
<xsd:unique name="UniqueCmdletParameterNamesUnderMethodElement_2">
<xsd:selector xpath=".//cps:CmdletParameterMetadata" />
<xsd:field xpath="@PSName" />
</xsd:unique>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="GetCmdletMetadata">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
GetCmdlet element defines cmdlet metadata for the cmdlet that queries for object instances.
If GetCmdlet element is ommited, then the default verb ("Get") and noun (based on <DefaultNoun> element) are going to be used.
GetCmdlet element is typically used for one of the following items:
- To allow the Get cmdlet to have different GetCmdletParameters than other cmdlets (for example to make all parameters optional for Get cmdlet, but make some parameters mandatory for other cmdlets)
- To change the verb of the cmdlet (for example to use "Find" where appropriate)
- To define aliases for the cmdlet
- To use obsolete attribute for the cmdlet
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="CmdletMetadata" type="cps:CommonCmdletMetadata" />
<xsd:element name="GetCmdletParameters" type="cps:GetCmdletParameters" minOccurs="0">
<xsd:unique name="UniqueCmdletParameterNamesUnderGetCmdletParametersElement_3">
<xsd:selector xpath=".//cps:CmdletParameterMetadata" />
<xsd:field xpath="@PSName" />
</xsd:unique>
<xsd:unique name="UniqueCmdletParameterAliasesUnderGetCmdletParametersElement_3">
<xsd:selector xpath=".//cps:CmdletParameterMetadata" />
<xsd:field xpath="@Aliases" />
</xsd:unique>
</xsd:element>
</xsd:sequence>
</xsd:complexType>
<xsd:complexType name="CommonCmdletMetadata">
<xsd:sequence>
<xsd:element name="Obsolete" type="cps:ObsoleteAttributeMetadata" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="Verb" type="cps:Verb" use="required">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
Verb attribute specifies the verb of the cmdlet.
Please refer to Cmdlet Design Guidelines for a list of approved verbs.
Verb attribute is equivalent to the verbName parameter of System.Management.Automation.CmdletAttribute constructor.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Noun" type="cps:Noun" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
Noun attribute specifies the noun of the cmdlet.
If the Noun attribute is ommited, then contents of the DefaultNoun element are used.
Noun attribute is equivalent to the nounName parameter of System.Management.Automation.CmdletAttribute constructor.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Aliases" type="cps:NonEmptyListOfAliases" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
Aliases attribute specifies a white-space separated list of aliases for the cmdlet.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ConfirmImpact" type="cps:ConfirmImpact" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
ConfirmImpact attribute specifies the impact of the cmdlet.
ConfirmImpact attribute determines the default -Confirm and -WhatIf behavior.
ConfirmImpact attribute is equivalent to the ConfirmImpact property of System.Management.Automation.CmdletAttribute.
Presence of the ConfirmImpact attribute is equivalent to setting to true the SupportsShouldProcess property of System.Management.Automation.CmdletAttribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="HelpUri" type="xsd:anyURI" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
HelpUri attribute specifies the URI with the help content.
HelpUri attribute is used for the following help experience: Get-Help -Online <cmdlet name>
HelpUri attribute is equivalent to the HelpUri property of System.Management.Automation.CmdletAttribute
Example: "http://go.microsoft.com/fwlink/?LinkID=113309"
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<!-- ############################################################ -->
<!-- # METHODS ################################################## -->
<xsd:complexType name="StaticMethodMetadata">
<xsd:complexContent>
<xsd:extension base="cps:CommonMethodMetadata">
<xsd:sequence>
<xsd:element name="Parameters" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Parameter" type="cps:StaticMethodParameterMetadata" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:key name="UniqueParameterNamesWithinStaticMethod">
<xsd:selector xpath=".//cps:Parameter" />
<xsd:field xpath="@ParameterName" />
</xsd:key>
<xsd:unique name="UniquePositionWithinStaticMethodParameters">
<xsd:selector xpath=".//cps:CmdletParameterMetadata" />
<xsd:field xpath="@Position" />
</xsd:unique>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="CmdletParameterSet" type="cps:ParameterSetName" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
CmdletParameterSet attribute specifies the name of a cmdlet parameter set associated with the static method.
If CmdletParameterSet is ommited, then the name of the cmdlet parameter set is auto-generated based on the name of the method.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="InstanceMethodMetadata">
<xsd:complexContent>
<xsd:extension base="cps:CommonMethodMetadata">
<xsd:sequence>
<xsd:element name="Parameters" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Parameter" type="cps:InstanceMethodParameterMetadata" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:key name="UniqueParameterNamesWithinMethod">
<xsd:selector xpath=".//cps:Parameter" />
<xsd:field xpath="@ParameterName" />
</xsd:key>
<xsd:unique name="UniquePositionWithinMethodParameters">
<xsd:selector xpath=".//cps:CmdletParameterMetadata" />
<xsd:field xpath="@Position" />
</xsd:unique>
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CommonMethodMetadata">
<xsd:sequence>
<xsd:element name="ReturnValue" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Type" type="cps:TypeMetadata" />
<xsd:element name="CmdletOutputMetadata" type="cps:CmdletOutputMetadata" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="MethodName" type="cps:NonEmptyString" use="required">
<xsd:annotation>
<xsd:documentation>
MethodName attribute specified the name of the method that the cmdlet invocations are mapped to.
Some method names are recognized and handled in a special way.
"cim:CreateInstance" is mapped to the WMI's static, intrinsic CreateInstance method. Names of method parameters have to map to names of properties.
"cim:ModifyInstance" is mapped to the WMI's instance, intrinsic ModifyInstance method. Names of method parameters have to map to names of properties.
"cim:DeleteInstance" is mapped to the WMI's instance, intrinsic DeleteInstance method. All method parameters are ignored.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="StaticMethodParameterMetadata">
<xsd:complexContent>
<xsd:extension base="cps:CommonMethodParameterMetadata">
<xsd:sequence>
<xsd:element name="CmdletParameterMetadata" type="cps:CmdletParameterMetadataForStaticMethodParameter" minOccurs="0" />
<xsd:element name="CmdletOutputMetadata" type="cps:CmdletOutputMetadata" minOccurs="0" />
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="InstanceMethodParameterMetadata">
<xsd:complexContent>
<xsd:extension base="cps:CommonMethodParameterMetadata">
<xsd:sequence>
<xsd:element name="CmdletParameterMetadata" type="cps:CmdletParameterMetadataForInstanceMethodParameter" minOccurs="0" />
<xsd:element name="CmdletOutputMetadata" type="cps:CmdletOutputMetadata" minOccurs="0" />
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CommonMethodParameterMetadata">
<xsd:sequence>
<xsd:element name="Type" type="cps:TypeMetadata" />
</xsd:sequence>
<xsd:attribute name="ParameterName" type="cps:NonEmptyString" use="required" />
<xsd:attribute name="DefaultValue" type="xsd:string" use="optional" />
</xsd:complexType>
<!-- ############################################################ -->
<!-- # PROPERTIES METADATA ###################################### -->
<xsd:complexType name="GetCmdletParameters">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
GetCmdletParameters element defines cmdlet parameters used to select object instances.
</xsd:documentation>
</xsd:annotation>
<xsd:sequence>
<xsd:element name="QueryableProperties" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Property" type="cps:PropertyMetadata" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
<xsd:key name="PropertyNameUnderQueryableProperties">
<xsd:selector xpath=".//cps:Property" />
<xsd:field xpath="@PropertyName" />
</xsd:key>
</xsd:element>
<xsd:element name="QueryableAssociations" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Association" type="cps:Association" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="QueryOptions" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Option" type="cps:QueryOption" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="DefaultCmdletParameterSet" type="cps:ParameterSetName" use="optional" />
</xsd:complexType>
<xsd:complexType name="QueryOption">
<xsd:sequence>
<xsd:element name="Type" type="cps:TypeMetadata" />
<xsd:element name="CmdletParameterMetadata" type="cps:CmdletParameterMetadataForGetCmdletParameter" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="OptionName" type="cps:NonEmptyString" use="required" />
</xsd:complexType>
<xsd:complexType name="Association">
<xsd:sequence>
<xsd:element name="AssociatedInstance">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="Type" type="cps:TypeMetadata" />
<xsd:element name="CmdletParameterMetadata" type="cps:CmdletParameterMetadataForGetCmdletFilteringParameter" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
</xsd:sequence>
<xsd:attribute name="Association" type="cps:NonEmptyString" use="required">
<xsd:annotation>
<xsd:documentation>
Association attribute specifies the name of the association between the cmdlet argument and the instances the cmdlet acts against.
Association attribute is equivalent to the associationClassName parameter of EnumerateAssociatedInstances method of Microsoft.Management.Infrastructure.CimSession class.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="SourceRole" type="cps:NonEmptyString" use="required">
<xsd:annotation>
<xsd:documentation>
SourceRole attribute specifies the role of the cmdlet argument (in the association between the cmdlet argument and the instances the cmdlet acts against).
SourceRole attribute is equivalent to the sourceRole parameter of EnumerateAssociatedInstances method of Microsoft.Management.Infrastructure.CimSession class.
SourceRole should be the name of a property on the class specified in the Association attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ResultRole" type="cps:NonEmptyString" use="required">
<xsd:annotation>
<xsd:documentation>
ResultRole attribute specifies the role of the cmdlet argument (in the association between the cmdlet argument and the instances the cmdlet acts against).
ResultRole attribute is equivalent to the resultRole parameter of EnumerateAssociatedInstances method of Microsoft.Management.Infrastructure.CimSession class.
ResultRole should be the name of a property on the class specified in the Association attribute.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="PropertyMetadata">
<xsd:sequence>
<xsd:element name="Type" type="cps:TypeMetadata" />
<xsd:choice maxOccurs="unbounded">
<xsd:element name="RegularQuery" type="cps:WildcardablePropertyQuery">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
RegularQuery element defines a cmdlet parameter that limits which objects will be processed by the cmdlet
- only objects with a property value equal to the cmdlet parameter argument will be processed.
Comparison of strings and characters is always case-insensitive.
Example for <RegularQuery> element that is applied to an ObjectId property:
The following cmdlet invocation:
Get-MyObject -ObjectId 123,456
will be translated into the following WQL query:
SELECT * FROM MyObject WHERE ((ObjectId = 123) OR (ObjectId = 456))
Example for <RegularQuery AllowGlobbing="false" > element that is applied to a Name property:
The following cmdlet invocation:
Get-MyObject -LiteralName p*,q*
will be translated into the following WQL query:
SELECT * FROM MyObject WHERE ((Name = "p*") OR (Name = "q*"))
Example for <RegularQuery AllowGlobbing="true" > element that is applied to a Name property:
The following cmdlet invocation:
Get-MyObject -Name p*,q*
will be translated into the following WQL query:
SELECT * FROM MyObject WHERE ((Name like "p%") OR (Name like "q%"))
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="ExcludeQuery" type="cps:WildcardablePropertyQuery">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
ExcludeQuery element defines a cmdlet parameter that limits which objects will be processed by the cmdlet
- only objects with a property value *not* equal to the cmdlet parameter argument will be processed.
Comparison of strings and characters is always case-insensitive.
Example for <ExcludeQuery> element that is applied to an ObjectId property:
The following cmdlet invocation:
Get-MyObject -ExcludeObjectId 123,456
will be translated into the following WQL query:
SELECT * FROM MyObject WHERE ((NOT Name = 123) AND (NOT Name = 456))
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="MinValueQuery" type="cps:PropertyQuery">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
MinValueQuery element defines a cmdlet parameter that limits which objects will be processed by the cmdlet
- only objects with a property value greater than or equal to the cmdlet parameter argument will be processed.
Example for <MinValueQuery> element that is applied to an WorkingSet property:
The following cmdlet invocation:
Get-MyObject -MinWorkingSet 123
will be translated into the following WQL query:
SELECT * FROM MyObject WHERE (WorkingSet >= 123)
</xsd:documentation>
</xsd:annotation>
</xsd:element>
<xsd:element name="MaxValueQuery" type="cps:PropertyQuery">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
MaxValueQuery element defines a cmdlet parameter that limits which objects will be processed by the cmdlet
- only objects with a property value less than or equal to the cmdlet parameter argument will be processed.
Example for <MaxValueQuery> element that is applied to an WorkingSet property:
The following cmdlet invocation:
Get-MyObject -MaxWorkingSet 123
will be translated into the following WQL query:
SELECT * FROM MyObject WHERE (WorkingSet =< 123)
</xsd:documentation>
</xsd:annotation>
</xsd:element>
</xsd:choice>
</xsd:sequence>
<xsd:attribute name="PropertyName" type="cps:NonEmptyString" use="required" />
</xsd:complexType>
<xsd:complexType name="WildcardablePropertyQuery">
<xsd:complexContent>
<xsd:extension base="cps:PropertyQuery">
<xsd:attribute name="AllowGlobbing" type="xsd:boolean" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
AllowGlobbing attribute specifies if strings with globbing characters (wildcards) are supported.
Example of a wildcard: "foo*" (matches all strings beginning with "foo")
If AllowGlobbing attribute is ommited then its value is based on the type of the filtered property.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="PropertyQuery">
<xsd:sequence>
<xsd:element name="CmdletParameterMetadata" type="cps:CmdletParameterMetadataForGetCmdletFilteringParameter" minOccurs="0" />
</xsd:sequence>
</xsd:complexType>
<!-- ############################################################ -->
<!-- # COMMON PROPERTIES/PARAMETERS METADATA##################### -->
<xsd:complexType name="CmdletParameterMetadataForStaticMethodParameter">
<xsd:complexContent>
<xsd:extension base="cps:CmdletParameterMetadata">
<xsd:attribute name="ValueFromPipeline" type="xsd:boolean" use="optional" />
<xsd:attribute name="ValueFromPipelineByPropertyName" type="xsd:boolean" use="optional" />
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CmdletParameterMetadataForInstanceMethodParameter">
<xsd:complexContent>
<xsd:extension base="cps:CmdletParameterMetadata">
<xsd:attribute name="ValueFromPipelineByPropertyName" type="xsd:boolean" use="optional" />
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CmdletParameterMetadataForGetCmdletFilteringParameter">
<xsd:complexContent>
<xsd:extension base="cps:CmdletParameterMetadataForGetCmdletParameter">
<xsd:attribute name="ErrorOnNoMatch" type="xsd:boolean" use="optional" />
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CmdletParameterMetadataForGetCmdletParameter">
<xsd:complexContent>
<xsd:extension base="cps:CmdletParameterMetadata">
<xsd:attribute name="ValueFromPipeline" type="xsd:boolean" use="optional" />
<xsd:attribute name="ValueFromPipelineByPropertyName" type="xsd:boolean" use="optional" />
<xsd:attribute name="CmdletParameterSets" type="cps:NonEmptyListOfParameterSetNames" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
CmdletParameterSets attribute is a whitespace-separated list of names of parameter sets,
that the cmdlet parameter should belong to.
If this parameter is ommited, then the cmdlet parameter belongs to all parameter sets.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="CmdletParameterMetadata">
<xsd:sequence>
<xsd:element name="AllowEmptyCollection" minOccurs="0" />
<xsd:element name="AllowEmptyString" minOccurs="0" />
<xsd:element name="AllowNull" minOccurs="0" />
<xsd:element name="ValidateNotNull" minOccurs="0" />
<xsd:element name="ValidateNotNullOrEmpty" minOccurs="0" />
<xsd:element name="ValidateCount" minOccurs="0">
<xsd:complexType>
<xsd:attribute name="Min" type="xsd:nonNegativeInteger" use="required" />
<xsd:attribute name="Max" type="xsd:nonNegativeInteger" use="required" />
</xsd:complexType>
</xsd:element>
<xsd:element name="ValidateLength" minOccurs="0">
<xsd:complexType>
<xsd:attribute name="Min" type="xsd:nonNegativeInteger" use="required" />
<xsd:attribute name="Max" type="xsd:nonNegativeInteger" use="required" />
</xsd:complexType>
</xsd:element>
<!-- ValidatePattern omitted - CDXML does not allow DOS attacks against PS client -->
<xsd:element name="ValidateRange" minOccurs="0">
<xsd:complexType>
<xsd:attribute name="Min" type="xsd:integer" use="required" />
<xsd:attribute name="Max" type="xsd:integer" use="required" />
</xsd:complexType>
</xsd:element>
<!-- ValidateScript omitted - CDXML does not allow execution of arbitrary code in PS client -->
<xsd:element name="ValidateSet" minOccurs="0">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="AllowedValue" type="xsd:string" maxOccurs="unbounded" />
</xsd:sequence>
</xsd:complexType>
</xsd:element>
<xsd:element name="Obsolete" type="cps:ObsoleteAttributeMetadata" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="IsMandatory" type="xsd:boolean" use="optional" />
<xsd:attribute name="Aliases" type="cps:NonEmptyListOfAliases" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
Aliases attribute specifies a white-space separated list of aliases for the cmdlet parameter.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="PSName" type="cps:CmdletParameterName" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
PSName attribute specifies the name of a cmdlet parameter.
If PSName attribute is ommited then it is based on the contents of PropertyName or ParameterName or OptionName attribute (whichever one is applicable).
Example:
<Property PropertyName="Name">
...
<!-- "Name" is used as the cmdlet parameter name -->
<RegularQuery AllowGlobbing="true" />
<!-- "LiteralName" is used as the cmdlet parameter name -->
<RegularQuery AllowGlobbing="false">
<CmdletParameterMetadata PSName="LiteralName" />
</RegularQuery>
</Property>
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="Position" type="xsd:nonNegativeInteger" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
Position attribute specifies position of the cmdlet parameter.
If Position attribute is ommited, then the cmdlet parameter cannot be used positionally - the user always has to explicitly specify the name of the parameter.
System may change relative parameter positions to guarantee that cmdlet parameters defined by GetCmdletParameters element are always
before cmdlet parameters defined under Method element.
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<xsd:complexType name="CmdletOutputMetadata">
<xsd:sequence>
<xsd:element name="ErrorCode" minOccurs="0">
</xsd:element>
</xsd:sequence>
<xsd:attribute name="PSName" type="cps:CmdletOutputName" use="optional" />
</xsd:complexType>
<xsd:complexType name="ObsoleteAttributeMetadata">
<xsd:attribute name="Message" type="cps:ObsoleteMessage" use="optional" />
</xsd:complexType>
<xsd:complexType name="TypeMetadata">
<xsd:attribute name="PSType" type="cps:PowerShellTypeIdentifier" use="required">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
PSType attribute specifies the name of the .NET type of the cmdlet parameter.
Example: "System.String"
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
<xsd:attribute name="ETSType" type="cps:NonEmptyString" use="optional">
<xsd:annotation>
<xsd:documentation xml:lang="en-us">
ETSType attribute specifies the PowerShell type name of the type of the cmdlet parameter.
ETSType attribute is equivalent to System.Management.Automation.PSTypeNameAttribute.
Example: "Microsoft.Management.Infrastructure.CimInstance#Win32_Process"
</xsd:documentation>
</xsd:annotation>
</xsd:attribute>
</xsd:complexType>
<!-- ############################################################ -->
<!-- # SIMPLE TYPES ############################################# -->
<xsd:simpleType name="NonEmptyListOfParameterSetNames">
<xsd:restriction>
<xsd:simpleType>
<xsd:list itemType="cps:ParameterSetName" />
</xsd:simpleType>
<xsd:minLength value="1" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="NonEmptyListOfAliases">
<xsd:restriction>
<xsd:simpleType>
<xsd:list itemType="cps:Alias" />
</xsd:simpleType>
<xsd:minLength value="1" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="VersionString">
<xsd:annotation>
<xsd:documentation>
Represents a version number that consist of two to four components: major, minor, build, and revision.
String representation of a version is "major.minor[.build[.revision]]" (optional components are shown in square brackets).
All defined components MUST be integers greater than or equal to 0.
For example, if the major number is 6, the minor number is 2, the build number is 1, and the revision number is 3, then string representation of the version would be "6.2.1.3".
</xsd:documentation>
</xsd:annotation>
<xsd:restriction base="xsd:string">
<xsd:pattern value="[12]?[0-9]{1,9}\.[12]?[0-9]{1,9}(\.[12]?[0-9]{1,9}(\.[12]?[0-9]{1,9})?)?" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="EnumValueName">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="100" />
<xsd:pattern value="&csharpIdentifierRegex;" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="EnumTypeName">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="200" />
<xsd:pattern value="&csharpNamespaceRegex;" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="PowerShellTypeIdentifier">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="1000" />
<xsd:pattern value="&clrTypeRegex;" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="NonEmptyString">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="Verb">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="100" />
<xsd:pattern value="&powerShellVerbRegex;" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="Noun">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="100" />
<xsd:pattern value="&powerShellNounRegex;" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="Alias">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="100" />
<xsd:pattern value="&powerShellAliasRegex;" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="ParameterSetName">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="100" />
<xsd:pattern value="&powerShellParameterSetRegex;" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="ObsoleteMessage">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="100" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="CmdletParameterName">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="100" />
<xsd:pattern value="&powerShellCmdletParameterRegex;" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="CmdletOutputName">
<xsd:restriction base="xsd:string">
<xsd:minLength value="1" />
<xsd:maxLength value="100" />
<xsd:pattern value="&powerShellCmdletParameterRegex;" />
</xsd:restriction>
</xsd:simpleType>
<xsd:simpleType name="ConfirmImpact">
<xsd:restriction base="xsd:string">
<xsd:enumeration value="None" />
<xsd:enumeration value="Low" />
<xsd:enumeration value="Medium" />
<xsd:enumeration value="High" />
</xsd:restriction>
</xsd:simpleType>
</xsd:schema>
|