{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/AccountUsage",
"title": "AccountUsage",
"type": "object",
"properties": {
"TotalCodeSize": {
"allOf": [
{
"$ref": "#/components/schemas/Long"
},
{
"description": "The amount of storage space, in bytes, that's being used by deployment packages and layer archives."
}
]
},
"FunctionCount": {
"allOf": [
{
"$ref": "#/components/schemas/Long"
},
{
"description": "The number of Lambda functions."
}
]
}
},
"description": "The number of functions and amount of storage in use."
}