securityObjectSpec.xsd 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed Materials - Property of IBM
  4. IBM Cognos Products: fmmd
  5. (C) Copyright IBM Corp. 2003, 2010
  6. US Government Users Restricted Rights - Use, duplication or disclosure
  7. restricted by GSA ADP Schedule Contract with IBM Corp.
  8. -->
  9. <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified">
  10. <xs:simpleType name="refType">
  11. <xs:restriction base="xs:string"/>
  12. </xs:simpleType>
  13. <xs:element name="securityObjects">
  14. <xs:annotation>
  15. <xs:documentation>This schema specifies how accounts, groups, and roles are to be passed to and from BMT MD actions.</xs:documentation>
  16. </xs:annotation>
  17. <xs:complexType>
  18. <xs:sequence maxOccurs="unbounded">
  19. <xs:element name="securityObject" type="securityObjectType">
  20. <xs:annotation>
  21. <xs:documentation>An account, group, or role</xs:documentation>
  22. </xs:annotation>
  23. </xs:element>
  24. </xs:sequence>
  25. </xs:complexType>
  26. </xs:element>
  27. <xs:complexType name="securityObjectType">
  28. <xs:sequence>
  29. <xs:element name="displayPath" type="xs:string" minOccurs="0">
  30. <xs:annotation>
  31. <xs:documentation>The (non-localized) display name of the security object</xs:documentation>
  32. </xs:annotation>
  33. </xs:element>
  34. <xs:element name="cmSearchPath" type="xs:string">
  35. <xs:annotation>
  36. <xs:documentation>The searchPath (CAM ID) of the security object in CM</xs:documentation>
  37. </xs:annotation>
  38. </xs:element>
  39. <xs:element name="view" minOccurs="0" maxOccurs="unbounded">
  40. <xs:annotation>
  41. <xs:documentation>Each instance represents a securityView wherein the securityObject has been specified</xs:documentation>
  42. </xs:annotation>
  43. <xs:complexType>
  44. <xs:sequence>
  45. <xs:element name="viewref" type="refType"/>
  46. <xs:element name="packageref" minOccurs="0" maxOccurs="unbounded">
  47. <xs:annotation>
  48. <xs:documentation>The set of packages that include this view.</xs:documentation>
  49. </xs:annotation>
  50. </xs:element>
  51. </xs:sequence>
  52. </xs:complexType>
  53. </xs:element>
  54. </xs:sequence>
  55. <xs:attribute name="type" use="required">
  56. <xs:simpleType>
  57. <xs:restriction base="xs:NMTOKEN">
  58. <xs:enumeration value="account"/>
  59. <xs:enumeration value="group"/>
  60. <xs:enumeration value="role"/>
  61. </xs:restriction>
  62. </xs:simpleType>
  63. </xs:attribute>
  64. </xs:complexType>
  65. </xs:schema>