Skip to content

Request Parameters

Here's the reference information for the request parameters.

These are the special functions that you can put in path operation function parameters or dependency functions with Annotated to get data from the request.

It includes:

  • Path()
  • Query()
  • Body()
  • Event()
  • Context()

You can import them all directly from nexify:

from nexify import Path, Query, Body, Event, Context

nexify.Path

Path(
    default=...,
    *,
    default_factory=Undefined,
    alias=None,
    alias_priority=Undefined,
    validation_alias=None,
    serialization_alias=None,
    title=None,
    description=None,
    gt=None,
    ge=None,
    lt=None,
    le=None,
    min_length=None,
    max_length=None,
    pattern=None,
    discriminator=None,
    strict=Undefined,
    multiple_of=Undefined,
    allow_inf_nan=Undefined,
    max_digits=Undefined,
    decimal_places=Undefined,
    examples=None,
    openapi_examples=None,
    deprecated=None,
    include_in_schema=True,
    json_schema_extra=None,
)

Declare a path parameter for a path operation.

PARAMETER DESCRIPTION
default

Default value if the parameter field is not set.

This doesn't affect Path parameters as the value is always required. The parameter is available only for compatibility.

TYPE: Any DEFAULT: ...

default_factory

A callable to generate the default value.

This doesn't affect Path parameters as the value is always required. The parameter is available only for compatibility.

TYPE: Callable[[], Any] | None DEFAULT: Undefined

alias

An alternative name for the parameter field.

This will be used to extract the data and for the generated OpenAPI. It is particularly useful when you can't use the name you want because it is a Python reserved keyword or similar.

TYPE: str | None DEFAULT: None

alias_priority

Priority of the alias. This affects whether an alias generator is used.

TYPE: int | None DEFAULT: Undefined

validation_alias

'Whitelist' validation step. The parameter field will be the single one allowed by the alias or set of aliases defined.

TYPE: str | AliasPath | AliasChoices | None DEFAULT: None

serialization_alias

'Blacklist' validation step. The vanilla parameter field will be the single one of the alias' or set of aliases' fields and all the other fields will be ignored at serialization time.

TYPE: str | None DEFAULT: None

title

Human-readable title.

TYPE: str | None DEFAULT: None

description

Human-readable description.

TYPE: str | None DEFAULT: None

gt

Greater than. If set, value must be greater than this. Only applicable to numbers.

TYPE: SupportsGt | None DEFAULT: None

ge

Greater than or equal. If set, value must be greater than or equal to this. Only applicable to numbers.

TYPE: SupportsGe | None DEFAULT: None

lt

Less than. If set, value must be less than this. Only applicable to numbers.

TYPE: SupportsLt | None DEFAULT: None

le

Less than or equal. If set, value must be less than or equal to this. Only applicable to numbers.

TYPE: SupportsLe | None DEFAULT: None

min_length

Minimum length for strings.

TYPE: int | None DEFAULT: None

max_length

Maximum length for strings.

TYPE: int | None DEFAULT: None

pattern

RegEx pattern for strings.

TYPE: str | None DEFAULT: None

discriminator

Parameter field name for discriminating the type in a tagged union.

TYPE: str | None DEFAULT: None

strict

If True, strict validation is applied to the field.

TYPE: bool | None DEFAULT: Undefined

multiple_of

Value must be a multiple of this. Only applicable to numbers.

TYPE: float | None DEFAULT: Undefined

allow_inf_nan

Allow inf, -inf, nan. Only applicable to numbers.

TYPE: bool | None DEFAULT: Undefined

max_digits

Maximum number of allow digits for strings.

TYPE: int | None DEFAULT: Undefined

decimal_places

Maximum number of decimal places allowed for numbers.

TYPE: int | None DEFAULT: Undefined

examples

Example values for this field.

TYPE: list[Any] | None DEFAULT: None

openapi_examples

OpenAPI-specific examples.

It will be added to the generated OpenAPI.

Swagger UI has better support for the OpenAPI-specific examples than the JSON Schema examples, that's the main use case for this.

TYPE: dict[str, Example] | None DEFAULT: None

deprecated

Mark this parameter field as deprecated.

It will affect the generated OpenAPI.

TYPE: deprecated | str | bool | None DEFAULT: None

include_in_schema

To include (or not) this parameter field in the generated OpenAPI. You probably don't need it, but it's available.

This affects the generated OpenAPI.

TYPE: bool DEFAULT: True

json_schema_extra

Any additional JSON schema data.

TYPE: dict[str, Any] | None DEFAULT: None

Source code in nexify/param_functions.py
 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
167
168
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
279
280
281
282
283
284
285
def Path(  # noqa: N802
    default: Annotated[
        Any,
        Doc(
            """
            Default value if the parameter field is not set.

            This doesn't affect `Path` parameters as the value is always required.
            The parameter is available only for compatibility.
            """
        ),
    ] = ...,
    *,
    default_factory: Annotated[
        Callable[[], Any] | None,
        Doc(
            """
            A callable to generate the default value.

            This doesn't affect `Path` parameters as the value is always required.
            The parameter is available only for compatibility.
            """
        ),
    ] = Undefined,
    alias: Annotated[
        str | None,
        Doc(
            """
            An alternative name for the parameter field.

            This will be used to extract the data and for the generated OpenAPI.
            It is particularly useful when you can't use the name you want because it
            is a Python reserved keyword or similar.
            """
        ),
    ] = None,
    alias_priority: Annotated[
        int | None,
        Doc(
            """
            Priority of the alias. This affects whether an alias generator is used.
            """
        ),
    ] = Undefined,
    validation_alias: Annotated[
        str | AliasPath | AliasChoices | None,
        Doc(
            """
            'Whitelist' validation step. The parameter field will be the single one
            allowed by the alias or set of aliases defined.
            """
        ),
    ] = None,
    serialization_alias: Annotated[
        str | None,
        Doc(
            """
            'Blacklist' validation step. The vanilla parameter field will be the
            single one of the alias' or set of aliases' fields and all the other
            fields will be ignored at serialization time.
            """
        ),
    ] = None,
    title: Annotated[
        str | None,
        Doc(
            """
            Human-readable title.
            """
        ),
    ] = None,
    description: Annotated[
        str | None,
        Doc(
            """
            Human-readable description.
            """
        ),
    ] = None,
    gt: Annotated[
        SupportsGt | None,
        Doc(
            """
            Greater than. If set, value must be greater than this. Only applicable to
            numbers.
            """
        ),
    ] = None,
    ge: Annotated[
        SupportsGe | None,
        Doc(
            """
            Greater than or equal. If set, value must be greater than or equal to
            this. Only applicable to numbers.
            """
        ),
    ] = None,
    lt: Annotated[
        SupportsLt | None,
        Doc(
            """
            Less than. If set, value must be less than this. Only applicable to numbers.
            """
        ),
    ] = None,
    le: Annotated[
        SupportsLe | None,
        Doc(
            """
            Less than or equal. If set, value must be less than or equal to this.
            Only applicable to numbers.
            """
        ),
    ] = None,
    min_length: Annotated[
        int | None,
        Doc(
            """
            Minimum length for strings.
            """
        ),
    ] = None,
    max_length: Annotated[
        int | None,
        Doc(
            """
            Maximum length for strings.
            """
        ),
    ] = None,
    pattern: Annotated[
        str | None,
        Doc(
            """
            RegEx pattern for strings.
            """
        ),
    ] = None,
    discriminator: Annotated[
        str | None,
        Doc(
            """
            Parameter field name for discriminating the type in a tagged union.
            """
        ),
    ] = None,
    strict: Annotated[
        bool | None,
        Doc(
            """
            If `True`, strict validation is applied to the field.
            """
        ),
    ] = Undefined,
    multiple_of: Annotated[
        float | None,
        Doc(
            """
            Value must be a multiple of this. Only applicable to numbers.
            """
        ),
    ] = Undefined,
    allow_inf_nan: Annotated[
        bool | None,
        Doc(
            """
            Allow `inf`, `-inf`, `nan`. Only applicable to numbers.
            """
        ),
    ] = Undefined,
    max_digits: Annotated[
        int | None,
        Doc(
            """
            Maximum number of allow digits for strings.
            """
        ),
    ] = Undefined,
    decimal_places: Annotated[
        int | None,
        Doc(
            """
            Maximum number of decimal places allowed for numbers.
            """
        ),
    ] = Undefined,
    examples: Annotated[
        list[Any] | None,
        Doc(
            """
            Example values for this field.
            """
        ),
    ] = None,
    openapi_examples: Annotated[
        dict[str, Example] | None,
        Doc(
            """
            OpenAPI-specific examples.

            It will be added to the generated OpenAPI.

            Swagger UI has better support for the
            OpenAPI-specific examples than the JSON Schema `examples`, that's the main
            use case for this.
            """
        ),
    ] = None,
    deprecated: Annotated[
        deprecated | str | bool | None,
        Doc(
            """
            Mark this parameter field as deprecated.

            It will affect the generated OpenAPI.
            """
        ),
    ] = None,
    include_in_schema: Annotated[
        bool,
        Doc(
            """
            To include (or not) this parameter field in the generated OpenAPI.
            You probably don't need it, but it's available.

            This affects the generated OpenAPI.
            """
        ),
    ] = True,
    json_schema_extra: Annotated[
        dict[str, Any] | None,
        Doc(
            """
            Any additional JSON schema data.
            """
        ),
    ] = None,
) -> Any:
    """
    Declare a path parameter for a *path operation*.
    """
    return params.Path(
        default=default,
        default_factory=default_factory,
        alias=alias,
        alias_priority=alias_priority,
        validation_alias=validation_alias,
        serialization_alias=serialization_alias,
        title=title,
        description=description,
        gt=gt,
        ge=ge,
        lt=lt,
        le=le,
        min_length=min_length,
        max_length=max_length,
        pattern=pattern,
        discriminator=discriminator,
        strict=strict,
        multiple_of=multiple_of,
        allow_inf_nan=allow_inf_nan,
        max_digits=max_digits,
        decimal_places=decimal_places,
        examples=examples,
        openapi_examples=openapi_examples,
        deprecated=deprecated,
        include_in_schema=include_in_schema,
        json_schema_extra=json_schema_extra,
    )

nexify.Query

Query(
    default=Undefined,
    *,
    default_factory=Undefined,
    alias=None,
    alias_priority=Undefined,
    validation_alias=None,
    serialization_alias=None,
    title=None,
    description=None,
    gt=None,
    ge=None,
    lt=None,
    le=None,
    min_length=None,
    max_length=None,
    pattern=None,
    discriminator=None,
    strict=Undefined,
    multiple_of=Undefined,
    allow_inf_nan=Undefined,
    max_digits=Undefined,
    decimal_places=Undefined,
    examples=None,
    openapi_examples=None,
    deprecated=None,
    include_in_schema=True,
    json_schema_extra=None,
)
PARAMETER DESCRIPTION
default

Default value if the parameter field is not set.

TYPE: Any DEFAULT: Undefined

default_factory

A callable to generate the default value.

This doesn't affect Path parameters as the value is always required. The parameter is available only for compatibility.

TYPE: Callable[[], Any] | None DEFAULT: Undefined

alias

An alternative name for the parameter field.

This will be used to extract the data and for the generated OpenAPI. It is particularly useful when you can't use the name you want because it is a Python reserved keyword or similar.

TYPE: str | None DEFAULT: None

alias_priority

Priority of the alias. This affects whether an alias generator is used.

TYPE: int | None DEFAULT: Undefined

validation_alias

'Whitelist' validation step. The parameter field will be the single one allowed by the alias or set of aliases defined.

TYPE: str | AliasPath | AliasChoices | None DEFAULT: None

serialization_alias

'Blacklist' validation step. The vanilla parameter field will be the single one of the alias' or set of aliases' fields and all the other fields will be ignored at serialization time.

TYPE: str | None DEFAULT: None

title

Human-readable title.

TYPE: str | None DEFAULT: None

description

Human-readable description.

TYPE: str | None DEFAULT: None

gt

Greater than. If set, value must be greater than this. Only applicable to numbers.

TYPE: SupportsGt | None DEFAULT: None

ge

Greater than or equal. If set, value must be greater than or equal to this. Only applicable to numbers.

TYPE: SupportsGe | None DEFAULT: None

lt

Less than. If set, value must be less than this. Only applicable to numbers.

TYPE: SupportsLt | None DEFAULT: None

le

Less than or equal. If set, value must be less than or equal to this. Only applicable to numbers.

TYPE: SupportsLe | None DEFAULT: None

min_length

Minimum length for strings.

TYPE: int | None DEFAULT: None

max_length

Maximum length for strings.

TYPE: int | None DEFAULT: None

pattern

RegEx pattern for strings.

TYPE: str | None DEFAULT: None

discriminator

Parameter field name for discriminating the type in a tagged union.

TYPE: str | None DEFAULT: None

strict

If True, strict validation is applied to the field.

TYPE: bool | None DEFAULT: Undefined

multiple_of

Value must be a multiple of this. Only applicable to numbers.

TYPE: float | None DEFAULT: Undefined

allow_inf_nan

Allow inf, -inf, nan. Only applicable to numbers.

TYPE: bool | None DEFAULT: Undefined

max_digits

Maximum number of allow digits for strings.

TYPE: int | None DEFAULT: Undefined

decimal_places

Maximum number of decimal places allowed for numbers.

TYPE: int | None DEFAULT: Undefined

examples

Example values for this field.

TYPE: list[Any] | None DEFAULT: None

openapi_examples

OpenAPI-specific examples.

It will be added to the generated OpenAPI.

Swagger UI has better support for the OpenAPI-specific examples than the JSON Schema examples, that's the main use case for this.

TYPE: dict[str, Example] | None DEFAULT: None

deprecated

Mark this parameter field as deprecated.

It will affect the generated OpenAPI.

TYPE: deprecated | str | bool | None DEFAULT: None

include_in_schema

To include (or not) this parameter field in the generated OpenAPI. You probably don't need it, but it's available.

This affects the generated OpenAPI.

TYPE: bool DEFAULT: True

json_schema_extra

Any additional JSON schema data.

TYPE: dict[str, Any] | None DEFAULT: None

Source code in nexify/param_functions.py
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
def Query(  # noqa: N802
    default: Annotated[
        Any,
        Doc(
            """
            Default value if the parameter field is not set.
            """
        ),
    ] = Undefined,
    *,
    default_factory: Annotated[
        Callable[[], Any] | None,
        Doc(
            """
            A callable to generate the default value.

            This doesn't affect `Path` parameters as the value is always required.
            The parameter is available only for compatibility.
            """
        ),
    ] = Undefined,
    alias: Annotated[
        str | None,
        Doc(
            """
            An alternative name for the parameter field.

            This will be used to extract the data and for the generated OpenAPI.
            It is particularly useful when you can't use the name you want because it
            is a Python reserved keyword or similar.
            """
        ),
    ] = None,
    alias_priority: Annotated[
        int | None,
        Doc(
            """
            Priority of the alias. This affects whether an alias generator is used.
            """
        ),
    ] = Undefined,
    validation_alias: Annotated[
        str | AliasPath | AliasChoices | None,
        Doc(
            """
            'Whitelist' validation step. The parameter field will be the single one
            allowed by the alias or set of aliases defined.
            """
        ),
    ] = None,
    serialization_alias: Annotated[
        str | None,
        Doc(
            """
            'Blacklist' validation step. The vanilla parameter field will be the
            single one of the alias' or set of aliases' fields and all the other
            fields will be ignored at serialization time.
            """
        ),
    ] = None,
    title: Annotated[
        str | None,
        Doc(
            """
            Human-readable title.
            """
        ),
    ] = None,
    description: Annotated[
        str | None,
        Doc(
            """
            Human-readable description.
            """
        ),
    ] = None,
    gt: Annotated[
        SupportsGt | None,
        Doc(
            """
            Greater than. If set, value must be greater than this. Only applicable to
            numbers.
            """
        ),
    ] = None,
    ge: Annotated[
        SupportsGe | None,
        Doc(
            """
            Greater than or equal. If set, value must be greater than or equal to
            this. Only applicable to numbers.
            """
        ),
    ] = None,
    lt: Annotated[
        SupportsLt | None,
        Doc(
            """
            Less than. If set, value must be less than this. Only applicable to numbers.
            """
        ),
    ] = None,
    le: Annotated[
        SupportsLe | None,
        Doc(
            """
            Less than or equal. If set, value must be less than or equal to this.
            Only applicable to numbers.
            """
        ),
    ] = None,
    min_length: Annotated[
        int | None,
        Doc(
            """
            Minimum length for strings.
            """
        ),
    ] = None,
    max_length: Annotated[
        int | None,
        Doc(
            """
            Maximum length for strings.
            """
        ),
    ] = None,
    pattern: Annotated[
        str | None,
        Doc(
            """
            RegEx pattern for strings.
            """
        ),
    ] = None,
    discriminator: Annotated[
        str | None,
        Doc(
            """
            Parameter field name for discriminating the type in a tagged union.
            """
        ),
    ] = None,
    strict: Annotated[
        bool | None,
        Doc(
            """
            If `True`, strict validation is applied to the field.
            """
        ),
    ] = Undefined,
    multiple_of: Annotated[
        float | None,
        Doc(
            """
            Value must be a multiple of this. Only applicable to numbers.
            """
        ),
    ] = Undefined,
    allow_inf_nan: Annotated[
        bool | None,
        Doc(
            """
            Allow `inf`, `-inf`, `nan`. Only applicable to numbers.
            """
        ),
    ] = Undefined,
    max_digits: Annotated[
        int | None,
        Doc(
            """
            Maximum number of allow digits for strings.
            """
        ),
    ] = Undefined,
    decimal_places: Annotated[
        int | None,
        Doc(
            """
            Maximum number of decimal places allowed for numbers.
            """
        ),
    ] = Undefined,
    examples: Annotated[
        list[Any] | None,
        Doc(
            """
            Example values for this field.
            """
        ),
    ] = None,
    openapi_examples: Annotated[
        dict[str, Example] | None,
        Doc(
            """
            OpenAPI-specific examples.

            It will be added to the generated OpenAPI.

            Swagger UI has better support for the
            OpenAPI-specific examples than the JSON Schema `examples`, that's the main
            use case for this.
            """
        ),
    ] = None,
    deprecated: Annotated[
        deprecated | str | bool | None,
        Doc(
            """
            Mark this parameter field as deprecated.

            It will affect the generated OpenAPI.
            """
        ),
    ] = None,
    include_in_schema: Annotated[
        bool,
        Doc(
            """
            To include (or not) this parameter field in the generated OpenAPI.
            You probably don't need it, but it's available.

            This affects the generated OpenAPI.
            """
        ),
    ] = True,
    json_schema_extra: Annotated[
        dict[str, Any] | None,
        Doc(
            """
            Any additional JSON schema data.
            """
        ),
    ] = None,
) -> Any:
    return params.Query(
        default=default,
        default_factory=default_factory,
        alias=alias,
        alias_priority=alias_priority,
        validation_alias=validation_alias,
        serialization_alias=serialization_alias,
        title=title,
        description=description,
        gt=gt,
        ge=ge,
        lt=lt,
        le=le,
        min_length=min_length,
        max_length=max_length,
        pattern=pattern,
        discriminator=discriminator,
        strict=strict,
        multiple_of=multiple_of,
        allow_inf_nan=allow_inf_nan,
        max_digits=max_digits,
        decimal_places=decimal_places,
        examples=examples,
        openapi_examples=openapi_examples,
        deprecated=deprecated,
        include_in_schema=include_in_schema,
        json_schema_extra=json_schema_extra,
    )

nexify.Body

Body(
    default=Undefined,
    *,
    default_factory=Undefined,
    embed=None,
    media_type="application/json",
    alias=None,
    alias_priority=Undefined,
    validation_alias=None,
    serialization_alias=None,
    title=None,
    description=None,
    gt=None,
    ge=None,
    lt=None,
    le=None,
    min_length=None,
    max_length=None,
    pattern=None,
    discriminator=None,
    strict=Undefined,
    multiple_of=Undefined,
    allow_inf_nan=Undefined,
    max_digits=Undefined,
    decimal_places=Undefined,
    examples=None,
    openapi_examples=None,
    deprecated=None,
    include_in_schema=True,
    json_schema_extra=None,
)
PARAMETER DESCRIPTION
default

Default value if the parameter field is not set.

TYPE: Any DEFAULT: Undefined

default_factory

A callable to generate the default value.

This doesn't affect Path parameters as the value is always required. The parameter is available only for compatibility.

TYPE: Callable[[], Any] | None DEFAULT: Undefined

embed

When embed is True, the parameter will be expected in a JSON body as a key instead of being the JSON body itself.

This happens automatically when more than one Body parameter is declared.

TYPE: bool | None DEFAULT: None

media_type

The media type of this parameter field. Changing it would affect the generated OpenAPI, but currently it doesn't affect the parsing of the data.

TYPE: str DEFAULT: 'application/json'

alias

An alternative name for the parameter field.

This will be used to extract the data and for the generated OpenAPI. It is particularly useful when you can't use the name you want because it is a Python reserved keyword or similar.

TYPE: str | None DEFAULT: None

alias_priority

Priority of the alias. This affects whether an alias generator is used.

TYPE: int | None DEFAULT: Undefined

validation_alias

'Whitelist' validation step. The parameter field will be the single one allowed by the alias or set of aliases defined.

TYPE: str | AliasPath | AliasChoices | None DEFAULT: None

serialization_alias

'Blacklist' validation step. The vanilla parameter field will be the single one of the alias' or set of aliases' fields and all the other fields will be ignored at serialization time.

TYPE: str | None DEFAULT: None

title

Human-readable title.

TYPE: str | None DEFAULT: None

description

Human-readable description.

TYPE: str | None DEFAULT: None

gt

Greater than. If set, value must be greater than this. Only applicable to numbers.

TYPE: SupportsGt | None DEFAULT: None

ge

Greater than or equal. If set, value must be greater than or equal to this. Only applicable to numbers.

TYPE: SupportsGe | None DEFAULT: None

lt

Less than. If set, value must be less than this. Only applicable to numbers.

TYPE: SupportsLt | None DEFAULT: None

le

Less than or equal. If set, value must be less than or equal to this. Only applicable to numbers.

TYPE: SupportsLe | None DEFAULT: None

min_length

Minimum length for strings.

TYPE: int | None DEFAULT: None

max_length

Maximum length for strings.

TYPE: int | None DEFAULT: None

pattern

RegEx pattern for strings.

TYPE: str | None DEFAULT: None

discriminator

Parameter field name for discriminating the type in a tagged union.

TYPE: str | None DEFAULT: None

strict

If True, strict validation is applied to the field.

TYPE: bool | None DEFAULT: Undefined

multiple_of

Value must be a multiple of this. Only applicable to numbers.

TYPE: float | None DEFAULT: Undefined

allow_inf_nan

Allow inf, -inf, nan. Only applicable to numbers.

TYPE: bool | None DEFAULT: Undefined

max_digits

Maximum number of allow digits for strings.

TYPE: int | None DEFAULT: Undefined

decimal_places

Maximum number of decimal places allowed for numbers.

TYPE: int | None DEFAULT: Undefined

examples

Example values for this field.

TYPE: list[Any] | None DEFAULT: None

openapi_examples

OpenAPI-specific examples.

It will be added to the generated OpenAPI.

Swagger UI has better support for the OpenAPI-specific examples than the JSON Schema examples, that's the main use case for this.

TYPE: dict[str, Example] | None DEFAULT: None

deprecated

Mark this parameter field as deprecated.

It will affect the generated OpenAPI.

TYPE: deprecated | str | bool | None DEFAULT: None

include_in_schema

To include (or not) this parameter field in the generated OpenAPI. You probably don't need it, but it's available.

This affects the generated OpenAPI.

TYPE: bool DEFAULT: True

json_schema_extra

Any additional JSON schema data.

TYPE: dict[str, Any] | None DEFAULT: None

Source code in nexify/param_functions.py
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
def Body(  # noqa: N802
    default: Annotated[
        Any,
        Doc(
            """
            Default value if the parameter field is not set.
            """
        ),
    ] = Undefined,
    *,
    default_factory: Annotated[
        Callable[[], Any] | None,
        Doc(
            """
            A callable to generate the default value.

            This doesn't affect `Path` parameters as the value is always required.
            The parameter is available only for compatibility.
            """
        ),
    ] = Undefined,
    embed: Annotated[
        bool | None,
        Doc(
            """
            When `embed` is `True`, the parameter will be expected in a JSON body as a
            key instead of being the JSON body itself.

            This happens automatically when more than one `Body` parameter is declared.
            """
        ),
    ] = None,
    media_type: Annotated[
        str,
        Doc(
            """
            The media type of this parameter field. Changing it would affect the
            generated OpenAPI, but currently it doesn't affect the parsing of the data.
            """
        ),
    ] = "application/json",
    alias: Annotated[
        str | None,
        Doc(
            """
            An alternative name for the parameter field.

            This will be used to extract the data and for the generated OpenAPI.
            It is particularly useful when you can't use the name you want because it
            is a Python reserved keyword or similar.
            """
        ),
    ] = None,
    alias_priority: Annotated[
        int | None,
        Doc(
            """
            Priority of the alias. This affects whether an alias generator is used.
            """
        ),
    ] = Undefined,
    validation_alias: Annotated[
        str | AliasPath | AliasChoices | None,
        Doc(
            """
            'Whitelist' validation step. The parameter field will be the single one
            allowed by the alias or set of aliases defined.
            """
        ),
    ] = None,
    serialization_alias: Annotated[
        str | None,
        Doc(
            """
            'Blacklist' validation step. The vanilla parameter field will be the
            single one of the alias' or set of aliases' fields and all the other
            fields will be ignored at serialization time.
            """
        ),
    ] = None,
    title: Annotated[
        str | None,
        Doc(
            """
            Human-readable title.
            """
        ),
    ] = None,
    description: Annotated[
        str | None,
        Doc(
            """
            Human-readable description.
            """
        ),
    ] = None,
    gt: Annotated[
        SupportsGt | None,
        Doc(
            """
            Greater than. If set, value must be greater than this. Only applicable to
            numbers.
            """
        ),
    ] = None,
    ge: Annotated[
        SupportsGe | None,
        Doc(
            """
            Greater than or equal. If set, value must be greater than or equal to
            this. Only applicable to numbers.
            """
        ),
    ] = None,
    lt: Annotated[
        SupportsLt | None,
        Doc(
            """
            Less than. If set, value must be less than this. Only applicable to numbers.
            """
        ),
    ] = None,
    le: Annotated[
        SupportsLe | None,
        Doc(
            """
            Less than or equal. If set, value must be less than or equal to this.
            Only applicable to numbers.
            """
        ),
    ] = None,
    min_length: Annotated[
        int | None,
        Doc(
            """
            Minimum length for strings.
            """
        ),
    ] = None,
    max_length: Annotated[
        int | None,
        Doc(
            """
            Maximum length for strings.
            """
        ),
    ] = None,
    pattern: Annotated[
        str | None,
        Doc(
            """
            RegEx pattern for strings.
            """
        ),
    ] = None,
    discriminator: Annotated[
        str | None,
        Doc(
            """
            Parameter field name for discriminating the type in a tagged union.
            """
        ),
    ] = None,
    strict: Annotated[
        bool | None,
        Doc(
            """
            If `True`, strict validation is applied to the field.
            """
        ),
    ] = Undefined,
    multiple_of: Annotated[
        float | None,
        Doc(
            """
            Value must be a multiple of this. Only applicable to numbers.
            """
        ),
    ] = Undefined,
    allow_inf_nan: Annotated[
        bool | None,
        Doc(
            """
            Allow `inf`, `-inf`, `nan`. Only applicable to numbers.
            """
        ),
    ] = Undefined,
    max_digits: Annotated[
        int | None,
        Doc(
            """
            Maximum number of allow digits for strings.
            """
        ),
    ] = Undefined,
    decimal_places: Annotated[
        int | None,
        Doc(
            """
            Maximum number of decimal places allowed for numbers.
            """
        ),
    ] = Undefined,
    examples: Annotated[
        list[Any] | None,
        Doc(
            """
            Example values for this field.
            """
        ),
    ] = None,
    openapi_examples: Annotated[
        dict[str, Example] | None,
        Doc(
            """
            OpenAPI-specific examples.

            It will be added to the generated OpenAPI.

            Swagger UI has better support for the
            OpenAPI-specific examples than the JSON Schema `examples`, that's the main
            use case for this.
            """
        ),
    ] = None,
    deprecated: Annotated[
        deprecated | str | bool | None,
        Doc(
            """
            Mark this parameter field as deprecated.

            It will affect the generated OpenAPI.
            """
        ),
    ] = None,
    include_in_schema: Annotated[
        bool,
        Doc(
            """
            To include (or not) this parameter field in the generated OpenAPI.
            You probably don't need it, but it's available.

            This affects the generated OpenAPI.
            """
        ),
    ] = True,
    json_schema_extra: Annotated[
        dict[str, Any] | None,
        Doc(
            """
            Any additional JSON schema data.
            """
        ),
    ] = None,
) -> Any:
    return params.Body(
        default=default,
        default_factory=default_factory,
        embed=embed,
        media_type=media_type,
        alias=alias,
        alias_priority=alias_priority,
        validation_alias=validation_alias,
        serialization_alias=serialization_alias,
        title=title,
        description=description,
        gt=gt,
        ge=ge,
        lt=lt,
        le=le,
        min_length=min_length,
        max_length=max_length,
        pattern=pattern,
        discriminator=discriminator,
        strict=strict,
        multiple_of=multiple_of,
        allow_inf_nan=allow_inf_nan,
        max_digits=max_digits,
        decimal_places=decimal_places,
        examples=examples,
        openapi_examples=openapi_examples,
        deprecated=deprecated,
        include_in_schema=include_in_schema,
        json_schema_extra=json_schema_extra,
    )

nexify.Event

Event()
Source code in nexify/param_functions.py
1370
1371
def Event():
    return params.Event()

nexify.Context

Context()
Source code in nexify/param_functions.py
1374
1375
def Context():
    return params.Context()