fix: schema change for a9bbb586fc

This commit is contained in:
Julian Lam
2023-01-27 09:37:53 -05:00
parent 1f60f7a0c0
commit 46b38e45a5

View File

@@ -20,83 +20,105 @@ get:
allOf:
- type: object
properties:
postCache:
caches:
type: object
properties:
length:
type: number
max:
type: number
nullable: true
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
groupCache:
type: object
properties:
length:
type: number
max:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
localCache:
type: object
properties:
length:
type: number
max:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
objectCache:
type: object
properties:
length:
type: number
max:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
postCache:
type: object
properties:
length:
type: number
max:
type: number
nullable: true
maxSize:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
ttl:
type: number
groupCache:
type: object
properties:
length:
type: number
max:
type: number
nullable: true
maxSize:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
ttl:
type: number
localCache:
type: object
properties:
length:
type: number
max:
type: number
nullable: true
maxSize:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
ttl:
type: number
objectCache:
type: object
properties:
length:
type: number
max:
type: number
nullable: true
maxSize:
type: number
itemCount:
type: number
percentFull:
type: number
hits:
type: string
misses:
type: string
hitRatio:
type: string
enabled:
type: boolean
ttl:
type: number
required:
- postCache
- groupCache