「JSONの解析」アクションでエラーになってしまいます
Q&A
Closed
「JSONの解析」アクションでエラーになってしまいます
エラーが出続けてしまい困っています。
sharepoint「ファイルコンテンツの取得」から、取得した情報から
JSONの解析アクションを使用し、一部の情報を抜き出そうとしたのですが、エラーになってしまいます。
抜き出したい文章
{
"$content-type": "application/pdf",
"$content": "●●●●●"
}
からcontent-type,contentを抜き出したいです。
コンテンツはsharepointの「ファイルコンテンツの取得」から指定、スキーマはサンプルから生成されたスキーマ(↓)を指定しています。
{
"type": "object",
"properties": {
"$content-type": {
"type": "string"
},
"$content": {
"type": "string"
}
}
}
エラー表示
BadRequest. The property 'content' must be of type JSON in the 'ParseJson' action inputs, but was of type 'application/pdf'.
知識のある方教えてくださると助かります。