Interface PolicyConfigSchema

Represents the configuration schema for a policy.

interface PolicyConfigSchema {
    properties: {
        [key: string]: PolicyConfigJSONSchema;
    };
    required?: string[];
}

Properties

properties: {
    [key: string]: PolicyConfigJSONSchema;
}

The policy's configuration properties.

Type declaration

  • [key: string]: PolicyConfigJSONSchema
required?: string[]

The configuration properties that are required.

Generated using TypeDoc