{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/UserList", "title": "UserList", "type": "object", "properties": { "items": { "type": "array", "items": { "type": "object", "properties": { "username": { "type": "string" }, "account_status": { "type": "string" }, "default_tablespace": { "type": "string" }, "created": { "type": "string", "format": "date-time" } } } } } }