diff --git a/academy/modules/ROOT/pages/3-reading-data/3.4-fetching-schema-types.adoc b/academy/modules/ROOT/pages/3-reading-data/3.4-fetching-schema-types.adoc index 6120acfb7..061fb40f6 100644 --- a/academy/modules/ROOT/pages/3-reading-data/3.4-fetching-schema-types.adoc +++ b/academy/modules/ROOT/pages/3-reading-data/3.4-fetching-schema-types.adoc @@ -12,7 +12,7 @@ $book isa book; action-execution (executor: $user, action: $action); $rel links ($book, $action); fetch { - "isbn": $book.isbn, + "isbn": [$book.isbn], "title": $book.title }; ----