Comment on page
Pre-defined polices
Ready to use policies
@sugoi\core comes with pre-defined policy for validating functions arguments:
ValidateSchemaPolicy(failedResponseCode: number = 400, ...policyMeta: TValidateSchemaMeta[])
failedResponseCode: number - The code will be stored under the exception if the value does not meet the criteria.
policyMeta: TValidateSchemaMeta - Meta data for validation.
{
schema: {[prop:string]:ComparableSchema}|ComparableSchema,
argIndex?: number, - The argument index which need to validate - default is 0
keyInArg?: string - Key in argument (optional)
}
{
role:{
text:string//with regex /([A-Z])+/i
}
}
@ValidateSchemaPolicy(400, {
schema: {
"role": ComparableSchema.ofType(
{text: ComparableSchema.ofType(SchemaTypes.STRING).setRegex("([A-Z])+", "i")}
)
},
argIndex: 0
})
In case the argument doesn't meet the criteria an exception will thrown with the given failed response code
Last modified 5yr ago