Validation
Simple validator to enforce incoming/outgoing event conforms with JSON Schema
Usage Documentation
MODULE | DESCRIPTION |
---|---|
base |
|
envelopes |
Built-in envelopes |
exceptions |
|
validator |
|
CLASS | DESCRIPTION |
---|---|
InvalidEnvelopeExpressionError |
When JMESPath fails to parse expression |
InvalidSchemaFormatError |
When JSON Schema is in invalid format |
SchemaValidationError |
When serialization fail schema validation |
FUNCTION | DESCRIPTION |
---|---|
validate |
Standalone function to validate event data using a JSON Schema |
SchemaValidationError ¶
SchemaValidationError(
message: str | None = None,
validation_message: str | None = None,
name: str | None = None,
path: list | None = None,
value: Any | None = None,
definition: Any | None = None,
rule: str | None = None,
rule_definition: Any | None = None,
)
Bases: Exception
When serialization fail schema validation
PARAMETER | DESCRIPTION |
---|---|
message
|
Powertools for AWS Lambda (Python) formatted error message
TYPE:
|
validation_message
|
Containing human-readable information what is wrong
(e.g.
TYPE:
|
name
|
name of a path in the data structure
(e.g.
TYPE:
|
path
|
TYPE:
|
value
|
The invalid value
TYPE:
|
definition
|
The full rule
TYPE:
|
rule
|
TYPE:
|
rule_definition
|
The specific rule
TYPE:
|
Source code in aws_lambda_powertools/utilities/validation/exceptions.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|
validate ¶
validate(
event: Any,
schema: dict,
formats: dict | None = None,
handlers: dict | None = None,
provider_options: dict | None = None,
envelope: str | None = None,
jmespath_options: dict | None = None,
) -> Any
Standalone function to validate event data using a JSON Schema
Typically used when you need more control over the validation process.
PARAMETER | DESCRIPTION |
---|---|
event
|
Lambda event to be validated
TYPE:
|
schema
|
JSON Schema to validate incoming event
TYPE:
|
envelope
|
JMESPath expression to filter data against
TYPE:
|
jmespath_options
|
Alternative JMESPath options to be included when filtering expr
TYPE:
|
formats
|
Custom formats containing a key (e.g. int64) and a value expressed as regex or callback returning bool
TYPE:
|
handlers
|
Custom methods to retrieve remote schemes, keyed off of URI scheme
TYPE:
|
provider_options
|
Arguments that will be passed directly to the underlying validate call
TYPE:
|
Example
Validate event
1 2 3 4 5 |
|
Unwrap event before validating against actual payload - using built-in envelopes
1 2 3 4 5 |
|
Unwrap event before validating against actual payload - using custom JMESPath expression
1 2 3 4 5 |
|
Unwrap and deserialize JSON string event before validating against actual payload - using built-in functions
1 2 3 4 5 |
|
Unwrap, decode base64 and deserialize JSON string event before validating against actual payload - using built-in functions
1 2 3 4 5 |
|
Unwrap, decompress ZIP archive and deserialize JSON string event before validating against actual payload - using built-in functions
1 2 3 4 5 |
|
RETURNS | DESCRIPTION |
---|---|
Dict
|
The validated event. If the schema specifies a |
RAISES | DESCRIPTION |
---|---|
SchemaValidationError
|
When schema validation fails against data set |
InvalidSchemaFormatError
|
When JSON schema provided is invalid |
InvalidEnvelopeExpressionError
|
When JMESPath expression to unwrap event is invalid |
Source code in aws_lambda_powertools/utilities/validation/validator.py
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
|
base ¶
FUNCTION | DESCRIPTION |
---|---|
validate_data_against_schema |
Validate dict data against given JSON Schema |
validate_data_against_schema ¶
validate_data_against_schema(
data: dict | str,
schema: dict,
formats: dict | None = None,
handlers: dict | None = None,
provider_options: dict | None = None,
) -> dict | str
Validate dict data against given JSON Schema
PARAMETER | DESCRIPTION |
---|---|
data
|
Data set to be validated
TYPE:
|
schema
|
JSON Schema to validate against
TYPE:
|
formats
|
Custom formats containing a key (e.g. int64) and a value expressed as regex or callback returning bool
TYPE:
|
handlers
|
Custom methods to retrieve remote schemes, keyed off of URI scheme
TYPE:
|
provider_options
|
Arguments that will be passed directly to the underlying validation call, in this case fastjsonchema.validate. For all supported arguments see: https://horejsek.github.io/python-fastjsonschema/#fastjsonschema.validate
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Dict
|
The validated event. If the schema specifies a |
RAISES | DESCRIPTION |
---|---|
SchemaValidationError
|
When schema validation fails against data set |
InvalidSchemaFormatError
|
When JSON schema provided is invalid |
Source code in aws_lambda_powertools/utilities/validation/base.py
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
|
envelopes ¶
Built-in envelopes
exceptions ¶
CLASS | DESCRIPTION |
---|---|
InvalidEnvelopeExpressionError |
When JMESPath fails to parse expression |
InvalidSchemaFormatError |
When JSON Schema is in invalid format |
SchemaValidationError |
When serialization fail schema validation |
SchemaValidationError ¶
SchemaValidationError(
message: str | None = None,
validation_message: str | None = None,
name: str | None = None,
path: list | None = None,
value: Any | None = None,
definition: Any | None = None,
rule: str | None = None,
rule_definition: Any | None = None,
)
Bases: Exception
When serialization fail schema validation
PARAMETER | DESCRIPTION |
---|---|
message
|
Powertools for AWS Lambda (Python) formatted error message
TYPE:
|
validation_message
|
Containing human-readable information what is wrong
(e.g.
TYPE:
|
name
|
name of a path in the data structure
(e.g.
TYPE:
|
path
|
TYPE:
|
value
|
The invalid value
TYPE:
|
definition
|
The full rule
TYPE:
|
rule
|
TYPE:
|
rule_definition
|
The specific rule
TYPE:
|
Source code in aws_lambda_powertools/utilities/validation/exceptions.py
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 |
|
validator ¶
FUNCTION | DESCRIPTION |
---|---|
validate |
Standalone function to validate event data using a JSON Schema |
validator |
Lambda handler decorator to validate incoming/outbound data using a JSON Schema |
validate ¶
validate(
event: Any,
schema: dict,
formats: dict | None = None,
handlers: dict | None = None,
provider_options: dict | None = None,
envelope: str | None = None,
jmespath_options: dict | None = None,
) -> Any
Standalone function to validate event data using a JSON Schema
Typically used when you need more control over the validation process.
PARAMETER | DESCRIPTION |
---|---|
event
|
Lambda event to be validated
TYPE:
|
schema
|
JSON Schema to validate incoming event
TYPE:
|
envelope
|
JMESPath expression to filter data against
TYPE:
|
jmespath_options
|
Alternative JMESPath options to be included when filtering expr
TYPE:
|
formats
|
Custom formats containing a key (e.g. int64) and a value expressed as regex or callback returning bool
TYPE:
|
handlers
|
Custom methods to retrieve remote schemes, keyed off of URI scheme
TYPE:
|
provider_options
|
Arguments that will be passed directly to the underlying validate call
TYPE:
|
Example
Validate event
1 2 3 4 5 |
|
Unwrap event before validating against actual payload - using built-in envelopes
1 2 3 4 5 |
|
Unwrap event before validating against actual payload - using custom JMESPath expression
1 2 3 4 5 |
|
Unwrap and deserialize JSON string event before validating against actual payload - using built-in functions
1 2 3 4 5 |
|
Unwrap, decode base64 and deserialize JSON string event before validating against actual payload - using built-in functions
1 2 3 4 5 |
|
Unwrap, decompress ZIP archive and deserialize JSON string event before validating against actual payload - using built-in functions
1 2 3 4 5 |
|
RETURNS | DESCRIPTION |
---|---|
Dict
|
The validated event. If the schema specifies a |
RAISES | DESCRIPTION |
---|---|
SchemaValidationError
|
When schema validation fails against data set |
InvalidSchemaFormatError
|
When JSON schema provided is invalid |
InvalidEnvelopeExpressionError
|
When JMESPath expression to unwrap event is invalid |
Source code in aws_lambda_powertools/utilities/validation/validator.py
169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 |
|
validator ¶
validator(
handler: Callable,
event: dict | str,
context: Any,
inbound_schema: dict | None = None,
inbound_formats: dict | None = None,
inbound_handlers: dict | None = None,
inbound_provider_options: dict | None = None,
outbound_schema: dict | None = None,
outbound_formats: dict | None = None,
outbound_handlers: dict | None = None,
outbound_provider_options: dict | None = None,
envelope: str = "",
jmespath_options: dict | None = None,
**kwargs: Any
) -> Any
Lambda handler decorator to validate incoming/outbound data using a JSON Schema
PARAMETER | DESCRIPTION |
---|---|
handler
|
Method to annotate on
TYPE:
|
event
|
Lambda event to be validated
TYPE:
|
context
|
Lambda context object
TYPE:
|
inbound_schema
|
JSON Schema to validate incoming event
TYPE:
|
outbound_schema
|
JSON Schema to validate outbound event
TYPE:
|
envelope
|
JMESPath expression to filter data against
TYPE:
|
jmespath_options
|
Alternative JMESPath options to be included when filtering expr
TYPE:
|
inbound_formats
|
Custom formats containing a key (e.g. int64) and a value expressed as regex or callback returning bool
TYPE:
|
outbound_formats
|
Custom formats containing a key (e.g. int64) and a value expressed as regex or callback returning bool
TYPE:
|
inbound_handlers
|
Custom methods to retrieve remote schemes, keyed off of URI scheme
TYPE:
|
outbound_handlers
|
Custom methods to retrieve remote schemes, keyed off of URI scheme
TYPE:
|
inbound_provider_options
|
Arguments that will be passed directly to the underlying validation call, in this case fastjsonchema.validate. For all supported arguments see: https://horejsek.github.io/python-fastjsonschema/#fastjsonschema.validate
TYPE:
|
outbound_provider_options
|
Arguments that will be passed directly to the underlying validation call, in this case fastjsonchema.validate. For all supported arguments see: https://horejsek.github.io/python-fastjsonschema/#fastjsonschema.validate
TYPE:
|
Example
Validate incoming event
1 2 3 4 5 |
|
Validate incoming and outgoing event
1 2 3 4 5 |
|
Unwrap event before validating against actual payload - using built-in envelopes
1 2 3 4 5 |
|
Unwrap event before validating against actual payload - using custom JMESPath expression
1 2 3 4 5 |
|
Unwrap and deserialize JSON string event before validating against actual payload - using built-in functions
1 2 3 4 5 |
|
Unwrap, decode base64 and deserialize JSON string event before validating against actual payload - using built-in functions
1 2 3 4 5 |
|
Unwrap, decompress ZIP archive and deserialize JSON string event before validating against actual payload - using built-in functions
1 2 3 4 5 |
|
RETURNS | DESCRIPTION |
---|---|
Any
|
Lambda handler response |
RAISES | DESCRIPTION |
---|---|
SchemaValidationError
|
When schema validation fails against data set |
InvalidSchemaFormatError
|
When JSON schema provided is invalid |
InvalidEnvelopeExpressionError
|
When JMESPath expression to unwrap event is invalid |
Source code in aws_lambda_powertools/utilities/validation/validator.py
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 |
|