Skip to content

Instantly share code, notes, and snippets.

@okash1n
Created February 16, 2022 14:52
Show Gist options
  • Save okash1n/c2f8dbf2e3b8b5149747ba6a107c7730 to your computer and use it in GitHub Desktop.
Save okash1n/c2f8dbf2e3b8b5149747ba6a107c7730 to your computer and use it in GitHub Desktop.
PAでスラッシュコマンドを受け取るスキーマ
{
"type": "object",
"properties": {
"$formdata": {
"type": "array",
"items": {
"type": "object",
"properties": {
"key": {
"type": "string"
},
"value": {
"type": "string"
}
},
"required": [
"key",
"value"
]
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment