{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Developer", "title": "Developer", "type": "object", "properties": { "email": { "type": "string", "format": "email" }, "firstName": { "type": "string" }, "lastName": { "type": "string" }, "userName": { "type": "string" }, "organizationName": { "type": "string" }, "status": { "type": "string", "enum": [ "active", "inactive" ] }, "apps": { "type": "array", "items": { "type": "string" } }, "developerId": { "type": "string" }, "createdAt": { "type": "string", "format": "date-time" }, "lastModifiedAt": { "type": "string", "format": "date-time" }, "attributes": { "type": "array", "items": { "type": "object", "properties": { "name": { "type": "string" }, "value": { "type": "string" } } } } } }