{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/StoredProcedureCreateRequest", "title": "StoredProcedureCreateRequest", "type": "object", "description": "Request body for creating a stored procedure.", "properties": { "id": { "type": "string", "description": "The unique name of the stored procedure.", "example": "abc123" }, "body": { "type": "string", "description": "The body of the stored procedure (JavaScript function).", "example": "example_value" } }, "required": [ "id", "body" ] }