create_article
Generate and publish a new knowledge article in ServiceNow with a title, body text, short description, category, and knowledge base, facilitating organized information sharing.
Instructions
Create a new knowledge article
Input Schema
Name | Required | Description | Default |
---|---|---|---|
article_type | No | The type of article | text |
category | Yes | Category for the article | |
keywords | No | Keywords for search | |
knowledge_base | Yes | The knowledge base to create the article in | |
short_description | Yes | Short description of the article | |
text | Yes | The main body text for the article | |
title | Yes | Title of the article |
Input Schema (JSON Schema)
{
"description": "Parameters for creating a knowledge article.",
"properties": {
"article_type": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": "text",
"description": "The type of article",
"title": "Article Type"
},
"category": {
"description": "Category for the article",
"title": "Category",
"type": "string"
},
"keywords": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Keywords for search",
"title": "Keywords"
},
"knowledge_base": {
"description": "The knowledge base to create the article in",
"title": "Knowledge Base",
"type": "string"
},
"short_description": {
"description": "Short description of the article",
"title": "Short Description",
"type": "string"
},
"text": {
"description": "The main body text for the article",
"title": "Text",
"type": "string"
},
"title": {
"description": "Title of the article",
"title": "Title",
"type": "string"
}
},
"required": [
"title",
"text",
"short_description",
"knowledge_base",
"category"
],
"title": "CreateArticleParams",
"type": "object"
}