{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CheckNameAvailabilityResult", "title": "CheckNameAvailabilityResult", "type": "object", "properties": { "message": { "type": "string" }, "nameAvailable": { "type": "boolean" }, "reason": { "type": "string", "enum": [ "Invalid", "AlreadyExists" ] } } }