create_item
Create and publish new articles on Qiita, a Japanese developer community platform, by providing title, markdown content, tags, and privacy settings.
Instructions
新しい記事を作成します
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | Yes | 記事の本文(Markdown形式) | |
| private | No | 非公開記事かどうか | |
| tags | Yes | タグの配列 | |
| title | Yes | 記事のタイトル | |
| tweet | No | Twitterに投稿するかどうか |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"description": "記事の本文(Markdown形式)",
"type": "string"
},
"private": {
"default": false,
"description": "非公開記事かどうか",
"type": "boolean"
},
"tags": {
"description": "タグの配列",
"items": {
"properties": {
"name": {
"description": "タグ名",
"type": "string"
},
"versions": {
"description": "タグのバージョン",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"name",
"versions"
],
"type": "object"
},
"type": "array"
},
"title": {
"description": "記事のタイトル",
"type": "string"
},
"tweet": {
"default": false,
"description": "Twitterに投稿するかどうか",
"type": "boolean"
}
},
"required": [
"title",
"body",
"tags"
],
"type": "object"
}