{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ApplicationDeveloperDetailed", "title": "ApplicationDeveloperDetailed", "description": "List of developers that have a registered application.", "type": "object", "properties": { "id": { "type": "string", "format": "uuid", "example": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7", "readOnly": true }, "email": { "type": "string", "format": "email", "example": "developer@email.com", "maxLength": 250 }, "full_name": { "type": "string", "example": "API Developer", "maxLength": 250, "pattern": "^[\\w \\W]+$" } }, "example": { "id": "7f9fd312-a987-4628-b4c5-bb4f4fddd5f7", "email": "user@email.com", "full_name": "API Developer" }, "additionalProperties": false, "required": [ "id" ] }