{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/ServerStatus", "title": "ServerStatus", "type": "object", "properties": { "name": { "type": "string", "example": "Example Title" }, "status": { "type": "string", "enum": [ "STARTED", "STOPPED", "STARTING", "STOPPING" ], "example": "STARTED" }, "message": { "type": "string", "example": "example_value" } } }