スタートアップ(英語)
コミュニティ(英語)
トレーニング(英語)
チュートリアル(英語)
ドキュメント
API、AI、ツール (英語)
%dw 2.0
output application/xml
---
books: {
(payload filter ($.properties.year > attributes.publishedAfter) map (item) -> {
book @(year: item.properties.year): {
(vars.exchangeRate.USD map {
price @(currency: $.currency): $.ratio * item.price
}),
title: item.properties.title,
authors: { (item.properties.author map {
author: $
}) }
}
} )
}


