{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/Application", "title": "Application", "type": "object", "properties": { "id": { "type": "string", "description": "Unique identifier for the application" }, "name": { "type": "string", "description": "Application name" }, "description": { "type": "string", "description": "Application description" }, "apiKey": { "type": "string", "description": "API key associated with this application" }, "status": { "type": "string", "enum": [ "active", "inactive" ], "description": "Current application status" }, "createdAt": { "type": "string", "format": "date-time", "description": "Timestamp when the application was created" } } }