{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/account", "title": "account", "allOf": [ { "$ref": "#/components/schemas/object" }, { "type": "object", "title": "Account", "description": "An account object.", "properties": { "links": { "$ref": "#/components/schemas/account_links" }, "created_on": { "type": "string", "format": "date-time" }, "display_name": { "type": "string" }, "username": { "type": "string", "pattern": "^[a-zA-Z0-9_\\-]+$" }, "uuid": { "type": "string" } }, "additionalProperties": true } ] }