|
1199 | 1199 | One is REQUIRED --> |
1200 | 1200 | <element name="siteId" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:string"/> |
1201 | 1201 | <element name="siteName" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:string"/> |
1202 | | - <element name="reviewOnSchedule" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:boolean"/> |
1203 | | - <element name="reviewEvery" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:nonNegativeInteger"/> |
1204 | 1202 | </sequence> |
1205 | 1203 | </extension> |
1206 | 1204 | </complexContent> |
|
1691 | 1689 | <element name="spellCheckEnabled" minOccurs="1" maxOccurs="1" type="xsd:boolean"/> |
1692 | 1690 | <element name="linkCheckEnabled" minOccurs="1" maxOccurs="1" type="xsd:boolean"/> |
1693 | 1691 | <element name="accessibilityCheckEnabled" minOccurs="1" maxOccurs="1" type="xsd:boolean"/> |
| 1692 | + <!-- REQUIRED Determines whether naming rules are inherited from the system preferences. |
| 1693 | + If true, the rule properties will be ignored when saving, but old values are preserved. |
| 1694 | + Otherwise, null values will be defaulted to appropriate values when saving. |
| 1695 | + Naming rules read from a site may be null. --> |
| 1696 | + <element name="inheritNamingRules" minOccurs="1" maxOccurs="1" type="xsd:boolean"/> |
| 1697 | + <!-- Depending on inheritNamingRules, this is Optional. Defines what case a name can be. --> |
| 1698 | + <element name="namingRuleCase" minOccurs="0" maxOccurs="1" nillable="true" type="impl:namingRuleCase"/> |
| 1699 | + <!-- Depending on inheritNamingRules, this is Optional. Defines how spaces are handled for names --> |
| 1700 | + <element name="namingRuleSpacing" minOccurs="0" maxOccurs="1" nillable="true" type="impl:namingRuleSpacing"/> |
| 1701 | + <!-- Depending on inheritNamingRules, this is Optional. Defines the asset types that enforce naming rules --> |
| 1702 | + <element name="namingRuleAssets" minOccurs="0" maxOccurs="1" nillable="true" type="impl:namingRuleAssets"/> |
1694 | 1703 | <!-- The root folder id and containers idds - used only when reading a site. Unused in other cases |
1695 | 1704 | NOT REQUIRED ignored --> |
1696 | 1705 | <element name="rootFolderId" minOccurs="0" maxOccurs="1" type="xsd:string" nillable="true"/> |
|
1709 | 1718 | </complexContent> |
1710 | 1719 | </complexType> |
1711 | 1720 |
|
| 1721 | + <simpleType name="namingRuleCase"> |
| 1722 | + <restriction base="xsd:string"> |
| 1723 | + <enumeration value="ANY"/> |
| 1724 | + <enumeration value="LOWER"/> |
| 1725 | + <enumeration value="UPPER"/> |
| 1726 | + </restriction> |
| 1727 | + </simpleType> |
| 1728 | + |
| 1729 | + <simpleType name="namingRuleSpacing"> |
| 1730 | + <restriction base="xsd:string"> |
| 1731 | + <enumeration value="SPACE"/> |
| 1732 | + <enumeration value="REMOVE"/> |
| 1733 | + <enumeration value="HYPHEN"/> |
| 1734 | + <enumeration value="UNDERSCORE"/> |
| 1735 | + </restriction> |
| 1736 | + </simpleType> |
| 1737 | + |
| 1738 | + <complexType name="namingRuleAssets"> |
| 1739 | + <sequence> |
| 1740 | + <element name="namingRuleAsset" minOccurs="0" maxOccurs="unbounded" type="impl:namingRuleAsset"/> |
| 1741 | + </sequence> |
| 1742 | + </complexType> |
| 1743 | + |
| 1744 | + <simpleType name="namingRuleAsset"> |
| 1745 | + <restriction base="xsd:string"> |
| 1746 | + <enumeration value="block"/> |
| 1747 | + <enumeration value="file"/> |
| 1748 | + <enumeration value="folder"/> |
| 1749 | + <enumeration value="page"/> |
| 1750 | + <enumeration value="symlink"/> |
| 1751 | + <enumeration value="template"/> |
| 1752 | + <enumeration value="reference"/> |
| 1753 | + <enumeration value="format"/> |
| 1754 | + </restriction> |
| 1755 | + </simpleType> |
| 1756 | + |
1712 | 1757 | <simpleType name="recycleBinExpiration"> |
1713 | 1758 | <restriction base="xsd:string"> |
1714 | 1759 | <enumeration value="1"/> |
|
2944 | 2989 | <!-- Whether or not this is an edit type workflow |
2945 | 2990 | NOT REQUIRED default: false --> |
2946 | 2991 | <element name="edit" maxOccurs="1" minOccurs="0" type="xsd:boolean"/> |
| 2992 | + <!-- Whether or not this is a move type workflow |
| 2993 | + NOT REQUIRED default: false --> |
| 2994 | + <element name="move" maxOccurs="1" minOccurs="0" type="xsd:boolean"/> |
2947 | 2995 | <!-- The naming behavior when an instance of this workflow is created |
2948 | 2996 | REQUIRED --> |
2949 | 2997 | <element name="namingBehavior" maxOccurs="1" minOccurs="1" type="impl:workflowNamingBehavior"/> |
|
2990 | 3038 | NOT REQUIRED --> |
2991 | 3039 | <element name="metadataSetId" type="xsd:string" maxOccurs="1" minOccurs="0"/> |
2992 | 3040 | <element name="metadataSetPath" maxOccurs="1" minOccurs="0" type="xsd:string"/> |
| 3041 | + <element name="reviewOnSchedule" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:boolean"/> |
| 3042 | + <element name="reviewEvery" maxOccurs="1" minOccurs="0" nillable="true" type="xsd:nonNegativeInteger"/> |
2993 | 3043 | </sequence> |
2994 | 3044 | </extension> |
2995 | 3045 | </complexContent> |
|
0 commit comments