Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(docs): a minor doc correction #208

Merged
merged 1 commit into from
Jan 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -194,26 +194,26 @@ private Object convertCell(int columnIndex, ResultSet rs, AbstractCellConverter
public static class Output implements io.kestra.core.models.tasks.Output {
@Schema(
title = "Map containing the first row of fetched data.",
description = "Only populated if 'fetchOne' parameter is set to true."
description = "Only populated if `fetchOne` parameter is set to true."
)
@JsonInclude
private final Map<String, Object> row;

@Schema(
title = "List of map containing rows of fetched data.",
description = "Only populated if 'fetch' parameter is set to true."
description = "Only populated if `fetch` parameter is set to true."
)
private final List<Map<String, Object>> rows;

@Schema(
title = "The URI of the result file on Kestra's internal storage (.ion file / Amazon Ion formatted text file).",
description = "Only populated if 'store' is set to true."
description = "Only populated if `store` is set to true."
)
private final URI uri;

@Schema(
title = "The size of the fetched rows.",
description = "Only populated if 'store' or 'fetch' parameter is set to true."
title = "The number of rows to be fetched.",
description = "Only populated if `store` or `fetch` parameter is set to true."
)
private final Long size;
}
Expand Down
Loading