root: update schema with latest drf-spectacular
Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
467ad29656
commit
0bbea79c64
41
schema.yml
41
schema.yml
|
@ -19231,9 +19231,11 @@ components:
|
||||||
readOnly: true
|
readOnly: true
|
||||||
user_agent:
|
user_agent:
|
||||||
type: object
|
type: object
|
||||||
|
description: User agent details
|
||||||
properties:
|
properties:
|
||||||
device:
|
device:
|
||||||
type: object
|
type: object
|
||||||
|
description: User agent device
|
||||||
properties:
|
properties:
|
||||||
brand:
|
brand:
|
||||||
type: string
|
type: string
|
||||||
|
@ -19241,8 +19243,13 @@ components:
|
||||||
type: string
|
type: string
|
||||||
model:
|
model:
|
||||||
type: string
|
type: string
|
||||||
|
required:
|
||||||
|
- brand
|
||||||
|
- family
|
||||||
|
- model
|
||||||
os:
|
os:
|
||||||
type: object
|
type: object
|
||||||
|
description: User agent os
|
||||||
properties:
|
properties:
|
||||||
family:
|
family:
|
||||||
type: string
|
type: string
|
||||||
|
@ -19254,8 +19261,15 @@ components:
|
||||||
type: string
|
type: string
|
||||||
patch_minor:
|
patch_minor:
|
||||||
type: string
|
type: string
|
||||||
|
required:
|
||||||
|
- family
|
||||||
|
- major
|
||||||
|
- minor
|
||||||
|
- patch
|
||||||
|
- patch_minor
|
||||||
user_agent:
|
user_agent:
|
||||||
type: object
|
type: object
|
||||||
|
description: User agent browser
|
||||||
properties:
|
properties:
|
||||||
family:
|
family:
|
||||||
type: string
|
type: string
|
||||||
|
@ -19265,11 +19279,22 @@ components:
|
||||||
type: string
|
type: string
|
||||||
patch:
|
patch:
|
||||||
type: string
|
type: string
|
||||||
|
required:
|
||||||
|
- family
|
||||||
|
- major
|
||||||
|
- minor
|
||||||
|
- patch
|
||||||
string:
|
string:
|
||||||
type: string
|
type: string
|
||||||
|
required:
|
||||||
|
- device
|
||||||
|
- os
|
||||||
|
- string
|
||||||
|
- user_agent
|
||||||
readOnly: true
|
readOnly: true
|
||||||
geo_ip:
|
geo_ip:
|
||||||
type: object
|
type: object
|
||||||
|
description: GeoIP Details
|
||||||
properties:
|
properties:
|
||||||
continent:
|
continent:
|
||||||
type: string
|
type: string
|
||||||
|
@ -19283,6 +19308,12 @@ components:
|
||||||
format: float
|
format: float
|
||||||
city:
|
city:
|
||||||
type: string
|
type: string
|
||||||
|
required:
|
||||||
|
- city
|
||||||
|
- continent
|
||||||
|
- country
|
||||||
|
- lat
|
||||||
|
- long
|
||||||
nullable: true
|
nullable: true
|
||||||
readOnly: true
|
readOnly: true
|
||||||
user:
|
user:
|
||||||
|
@ -21033,7 +21064,7 @@ components:
|
||||||
readOnly: true
|
readOnly: true
|
||||||
traces_sample_rate:
|
traces_sample_rate:
|
||||||
type: number
|
type: number
|
||||||
format: float
|
format: double
|
||||||
readOnly: true
|
readOnly: true
|
||||||
required:
|
required:
|
||||||
- enabled
|
- enabled
|
||||||
|
@ -30444,6 +30475,7 @@ components:
|
||||||
readOnly: true
|
readOnly: true
|
||||||
runtime:
|
runtime:
|
||||||
type: object
|
type: object
|
||||||
|
description: Runtime information
|
||||||
properties:
|
properties:
|
||||||
python_version:
|
python_version:
|
||||||
type: string
|
type: string
|
||||||
|
@ -30457,6 +30489,13 @@ components:
|
||||||
type: string
|
type: string
|
||||||
uname:
|
uname:
|
||||||
type: string
|
type: string
|
||||||
|
required:
|
||||||
|
- architecture
|
||||||
|
- environment
|
||||||
|
- gunicorn_version
|
||||||
|
- platform
|
||||||
|
- python_version
|
||||||
|
- uname
|
||||||
readOnly: true
|
readOnly: true
|
||||||
tenant:
|
tenant:
|
||||||
type: string
|
type: string
|
||||||
|
|
Reference in a new issue