Site Standard Policies
Site Standard Policies enable you to enforce Site Standards on more than one folder.
You can filter where the Policy applies by folder name and server.
The following example shows a Site Standard Policy with all the defined parameters. You can use these JSON definitions to deploy Site Standard Policies using Automation API commands, as described in Site Standard Policies.
{
"SiteStandardsPolicyName": {
"Type": "SiteStandardPolicy",
"Description": "Description",
"SiteStandard": "BasicStandard",
"BusinessFields" : [ { "Department" : "HR" }, {"Company": "BMC"} ],
"Status": "Active",
"ErrorLevel": "Default",
"ApplyOn": {
"Server": "Server",
"Folder": "Folder"
}
}
}
Parameters that are not defined are set to the default and do not appear in the response.
Parameter |
Description |
---|---|
Description |
Describes the Policy. Optional. |
SiteStandard |
Defines the Site Standard associated with the Policy. |
BusinessFields |
Defines the values for the business fields of the specified Site Standard. Enter this information as an array with the following format: [ {BusinessField1_Name:value}, {BusinessField2_Name:value} ] |
Status |
Indicates whether the Policy is Active or Not active. Default: Active |
ErrorLevel |
Defines the message severity level when a user does not obey a Site Standard Policy. Valid values:
|
ApplyOn |
Defines where to enforce the Site Standard associated with the Policy, filtered by server and folder name. You can specify multiple values separated by commas, and use asterisks (*) as wildcards.
|