From 38f735cf19f903ddb47d331a1d11df2e9fc4e8b2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E5=87=A4=E5=AE=9D?= Date: Fri, 3 May 2024 22:50:19 +0800 Subject: [PATCH] feat: change name to swagger-api-hub --- .fatherrc.ts | 10 + CHANGELOG.md | 6 +- README.md | 28 +- api-spec.json | 122092 --------------- bin/{api-hub.js => swagger-api-hub.js} | 8 +- cli/paths.ts | 2 +- cli/repl.ts | 4 +- package.json | 12 +- .../swagger-api-hub.config.ts | 5 +- tsconfig.json | 2 +- 10 files changed, 44 insertions(+), 122125 deletions(-) create mode 100644 .fatherrc.ts delete mode 100644 api-spec.json rename bin/{api-hub.js => swagger-api-hub.js} (65%) rename api-hub.config.ts => sample/swagger-api-hub.config.ts (68%) diff --git a/.fatherrc.ts b/.fatherrc.ts new file mode 100644 index 0000000..49a43b3 --- /dev/null +++ b/.fatherrc.ts @@ -0,0 +1,10 @@ +import { defineConfig } from 'father'; + +export default defineConfig({ + cjs: { + input: 'cli', + output: 'lib', + platform: 'node', + }, + sourcemap: true, +}); diff --git a/CHANGELOG.md b/CHANGELOG.md index cc59842..05f99ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,6 @@ ### Features -- add commitlint ([fba1adf](https://github.com/shijistar/api-hub/commit/fba1adfc3d440c7b5b2c24eb2514053ae8d4556b)) -- add husky and lint-staged ([d58e331](https://github.com/shijistar/api-hub/commit/d58e3318e48df67dcbe63df4e9287d810d531bae)) -- add main implementation of api-hub ([63af1d3](https://github.com/shijistar/api-hub/commit/63af1d3b545d1f403928067130d3db7b077561ad)) +- add commitlint ([fba1adf](https://github.com/shijistar/swagger-api-hub/commit/fba1adfc3d440c7b5b2c24eb2514053ae8d4556b)) +- add husky and lint-staged ([d58e331](https://github.com/shijistar/swagger-api-hub/commit/d58e3318e48df67dcbe63df4e9287d810d531bae)) +- add main implementation of swagger-api-hub ([63af1d3](https://github.com/shijistar/swagger-api-hub/commit/63af1d3b545d1f403928067130d3db7b077561ad)) diff --git a/README.md b/README.md index 0829835..a78b87b 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# api-hub +# swagger-api-hub Produce front-end interface code for OpenAPI-based backend services with a single click. This tool is designed to generate TypeScript code for API clients and request methods from OpenAPI specifications. It can be used as a command line tool or as a Node.js module which is integrated into your build process. It supports both OpenAPI 2.0 and 3.0 specifications. @@ -10,34 +10,34 @@ This tool is a wrapper of the [swagger-typescript-api **Install as global command line tool:** ```bash -$ npm install -g api-hub +$ npm install -g swagger-api-hub ``` **Install as project-wide dependency:** ```bash -$ npm install -D api-hub +$ npm install -D swagger-api-hub ``` ## Usage #### Use as global command line tool: -It reads the default configuration file `./api-hub.config.ts`, you can also specify a custom configuration file. +It reads the default configuration file `./swagger-api-hub.config.ts`, you can also specify a custom configuration file. ```bash -$ api-hub -$ api-hub config/services.ts +$ swagger-api-hub +$ swagger-api-hub config/services.ts ``` The configuration file should export an array of `ServiceConfig` objects. If you export only one object, it will generate the code directly without prompting. The config file extension can be `.ts`, `.js`, `.json`, or any other module types supported by Node.js. The file should look like this: -_api-hub.config.ts_ +_swagger-api-hub.config.ts_ ```typescript -import type { ServiceConfig } from 'api-hub'; +import type { ServiceConfig } from 'swagger-api-hub'; const services: ServiceConfig[] = [ { @@ -59,10 +59,10 @@ export default services; The `ServiceConfig` object has the following properties: -- `id`: *[required]* A unique identifier for the service. +- `id`: _[required]_ A unique identifier for the service. - `name`: A human-readable name for the service. -- `url`: *[required]* The URL of the OpenAPI specification file. If you have a local file, you can use `input` instead of `url` to specify the file path. Or you can even use `spec` to provide the OpenAPI specification object directly. Either `url`, `input`, or `spec` is required. -- `apiBase`: The base path of all API endpoints. The service may be hosted on a subpath of the main domain, e.g., */public-api/iam/v3*, then the apiBase is */public-api* in this case. If the original api path from the OpenAPI specification is acceptable, you don't need this field. +- `url`: _[required]_ The URL of the OpenAPI specification file. If you have a local file, you can use `input` instead of `url` to specify the file path. Or you can even use `spec` to provide the OpenAPI specification object directly. Either `url`, `input`, or `spec` is required. +- `apiBase`: The base path of all API endpoints. The service may be hosted on a subpath of the main domain, e.g., _/public-api/iam/v3_, then the apiBase is _/public-api_ in this case. If the original api path from the OpenAPI specification is acceptable, you don't need this field. - `crossOrigin`: Whether to use the absolute api path when calling the service. This is useful when the service is hosted on a different domain and you need to set the `Access-Control-Allow-Origin` header. Default is `false`. - `output`: The output directory for the generated code. The default is `./src/api/{id}`. - `httpClientFile`: Change the default path of `http-client.ts` file, so you can use your own http client. The default is `./http-client` under each service directory. @@ -72,9 +72,9 @@ The `ServiceConfig` object has the following properties: #### Use as npm dependency: ```typescript -import { generate, promptToGenerate } from 'api-hub'; -import type { ServiceConfig } from 'api-hub'; -import services from './api-hub.config'; +import { generate, promptToGenerate } from 'swagger-api-hub'; +import type { ServiceConfig } from 'swagger-api-hub'; +import services from './swagger-api-hub.config'; // Way1: Generate multiple services with prompts promptToGenerate(services); diff --git a/api-spec.json b/api-spec.json deleted file mode 100644 index aa52a16..0000000 --- a/api-spec.json +++ /dev/null @@ -1,122092 +0,0 @@ -{ - "openapi": "3.0.3", - "info": { - "title": "ITSM-BFF API", - "contact": { - "name": "ICS Cloud Tools Team", - "url": "https://xcloud.lenovo.com", - "email": "-ics-cloud-tools@lenovo.com" - }, - "version": "v1" - }, - "servers": [ - { - "url": "https://itsm-bff-dev.earth.xpaas.lenovo.com:443", - "description": "Inferred Url" - } - ], - "tags": [ - { - "name": "AI Robot api", - "description": "AI Robot Controller" - }, - { - "name": "Activity comment API", - "description": "Pb Activity Comment Controller" - }, - { - "name": "Admin opt api", - "description": "Admin Controller" - }, - { - "name": "Approval", - "description": "Approval Controller" - }, - { - "name": "Approval Process Definition API", - "description": "Process Definition Controller" - }, - { - "name": "Attachment API", - "description": "Km Attachment Controller" - }, - { - "name": "BPM Task Sync API", - "description": "Bpm Task Sync Controller" - }, - { - "name": "BizCategory", - "description": "Biz Category Controller" - }, - { - "name": "Change AD-User Tower API", - "description": "Ad User Controller" - }, - { - "name": "Change Approvals API", - "description": "Change Approval Controller" - }, - { - "name": "Change Area API", - "description": "Change Area Controller" - }, - { - "name": "Change Automation API", - "description": "Change Automation Controller" - }, - { - "name": "Change CAB API", - "description": "Cab Controller" - }, - { - "name": "Change CI API", - "description": "Change Ci Controller" - }, - { - "name": "Change CI Sync API", - "description": "Change Ci Sync Controller" - }, - { - "name": "Change Comment API", - "description": "Change Comment Controller" - }, - { - "name": "Change Common Api", - "description": "Common Controller" - }, - { - "name": "Change Email Entry API", - "description": "Email Entry V 2 Controller" - }, - { - "name": "Change File API", - "description": "Change File Controller" - }, - { - "name": "Change Plan API", - "description": "Change Plan Controller" - }, - { - "name": "Change Reports API", - "description": "Report Controller" - }, - { - "name": "Change Risk Assessment API", - "description": "Risk Assessment Controller" - }, - { - "name": "Change Scene API", - "description": "Change Scene Controller" - }, - { - "name": "Change System Config API", - "description": "Sys Config Controller" - }, - { - "name": "Change System User Log API", - "description": "Sys User Log Controller" - }, - { - "name": "Change Templates API", - "description": "Change Template Controller" - }, - { - "name": "Change User Tower API", - "description": "Ad Tower Controller" - }, - { - "name": "Change Window API", - "description": "Cal Window Controller" - }, - { - "name": "Change catalogs API", - "description": "Change Catalog Controller" - }, - { - "name": "ChangeSubTask API", - "description": "Change Sub Task Controller" - }, - { - "name": "Changes API", - "description": "Change Controller" - }, - { - "name": "Changes Coordination API", - "description": "Change Coordination Controller" - }, - { - "name": "Chat Conversation API", - "description": "Chat Conversation Controller" - }, - { - "name": "Chat Message API", - "description": "Chat Message Controller" - }, - { - "name": "Chat Monitor API", - "description": "Chat Monitor Controller" - }, - { - "name": "Chat Statistic API", - "description": "Chat Statistic Controller" - }, - { - "name": "Cmdb Api", - "description": "Cmdb Api Controller" - }, - { - "name": "Common Email Entry API", - "description": "Common Email Approval Controller" - }, - { - "name": "Duty API", - "description": "Duty Controller" - }, - { - "name": "Duty Class API", - "description": "Duty Class Controller" - }, - { - "name": "Duty Class Change API", - "description": "Duty Class Change Controller" - }, - { - "name": "Duty Class Leave API", - "description": "Duty Class Leave Controller" - }, - { - "name": "Duty Class Log API", - "description": "Duty Class Log Controller" - }, - { - "name": "Duty Class Log Act API", - "description": "Duty Class Log Act Controller" - }, - { - "name": "Duty Class Log Ticket API", - "description": "Duty Class Log Ticket Controller" - }, - { - "name": "Duty Class Schedule API", - "description": "Duty Class Schedule Controller" - }, - { - "name": "Duty Festival API", - "description": "Duty Festival Controller" - }, - { - "name": "Duty Statistics API", - "description": "Duty Statistics Controller" - }, - { - "name": "Duty Work Date API", - "description": "Duty Work Date Controller" - }, - { - "name": "Duty Work Location API", - "description": "Duty Work Location Controller" - }, - { - "name": "Email Entry API", - "description": "Email Entry Controller" - }, - { - "name": "Email Parse API", - "description": "Email Parse Controller" - }, - { - "name": "Governance Project Api", - "description": "Governance Project Controller" - }, - { - "name": "ITSM Group User API", - "description": "User Group Controller" - }, - { - "name": "ITSM Template API", - "description": "Template Controller" - }, - { - "name": "Incident API", - "description": "Incident Controller" - }, - { - "name": "Incident Attachment API", - "description": "Incident Attachment Controller" - }, - { - "name": "Incident Ci Api", - "description": "Incident Ci Controller" - }, - { - "name": "Incident Comment API", - "description": "Incident Comment Controller" - }, - { - "name": "Incident Favourite API", - "description": "Incident Favourite Controller" - }, - { - "name": "Incident Knowledge API", - "description": "Incident Knowldege Controller" - }, - { - "name": "Incident Report API", - "description": "Incident Report Controller" - }, - { - "name": "Incident Subtask API", - "description": "Incident Subtask Controller" - }, - { - "name": "Incident relate ticket API", - "description": "Incident Relate Ticket Controller" - }, - { - "name": "Init data api", - "description": "Init Data Record Controller" - }, - { - "name": "Integration Change API", - "description": "Devops Change Controller" - }, - { - "name": "Interface Call Log API", - "description": "Interface Call Log Controller" - }, - { - "name": "Itsm Attachment API", - "description": "Itsm Attachment Controller" - }, - { - "name": "Itsm Config Api", - "description": "Itsm Config Controller" - }, - { - "name": "Itsm License api", - "description": "Itsm License Controller" - }, - { - "name": "Itsm Subtask API", - "description": "Itsm Subtask Controller" - }, - { - "name": "KM group API", - "description": "Km User Group Controller" - }, - { - "name": "Km4RecommendKnowledge API", - "description": "Km Recommend Controller" - }, - { - "name": "KmApprocal API", - "description": "Km Knowledge Approval Controller" - }, - { - "name": "KmCatalog API", - "description": "Km Catalog Controller" - }, - { - "name": "KmComment API", - "description": "Km Comment Controller" - }, - { - "name": "KmDocRelate API", - "description": "Km Doc Relate Controller" - }, - { - "name": "KmFavourite API", - "description": "Km Favourite Controller" - }, - { - "name": "KmKnowledge API", - "description": "Km Knowledge Controller" - }, - { - "name": "KmKnowledge Graph API", - "description": "Km Knowledge Graph Controller" - }, - { - "name": "KmKnowledge version API", - "description": "Km Knowledge Version Controller" - }, - { - "name": "KmKnowledgeCi API", - "description": "Km Knowledge Ci Controller" - }, - { - "name": "KmKnowledgeClick API", - "description": "Km Knowledge Click Controller" - }, - { - "name": "KmKnowledgeTag API", - "description": "Km Knowledge Tag Controller" - }, - { - "name": "KmKnowledgeTicket API", - "description": "Km Knowledge Ticket Controller" - }, - { - "name": "KmSearchConfig API", - "description": "Km Search Config Controller" - }, - { - "name": "Mobile BizCategory", - "description": "Mobile Biz Category Controller" - }, - { - "name": "Mobile IM Message API", - "description": "Mobile I Message Controller" - }, - { - "name": "Mobile ITSM Group User API", - "description": "Mobile User Group Controller" - }, - { - "name": "Mobile Incident API", - "description": "Mobile Incident Controller" - }, - { - "name": "Mobile Incident Attachment API", - "description": "Mobile Incident Attachment Controller" - }, - { - "name": "Mobile OptionConfig", - "description": "Mobile Option Config Controller" - }, - { - "name": "Mobile Portal Config API", - "description": "Mobile Portal Config Controller" - }, - { - "name": "Mobile Portal Ticket API", - "description": "Mobile Ticket Sla Controller" - }, - { - "name": "Mobile Template API", - "description": "Mobile Template Controller" - }, - { - "name": "Mobile TicketEvaluate API", - "description": "Mobile Ticket Evaluate Controller" - }, - { - "name": "OptionConfig", - "description": "Option Config Controller" - }, - { - "name": "Organization API", - "description": "Organization Controller" - }, - { - "name": "Organization Group API", - "description": "Organization Group Controller" - }, - { - "name": "Organization Group Member API", - "description": "Organization Group Member Controller" - }, - { - "name": "Pb API", - "description": "Pb Controller" - }, - { - "name": "Pb Attachment API", - "description": "Pb Attachment Controller" - }, - { - "name": "Pb Change API", - "description": "Pb Change Ci Controller" - }, - { - "name": "Pb Incident API", - "description": "Incident Pb Controller" - }, - { - "name": "Pb Subtask API", - "description": "Pb Subtask Controller" - }, - { - "name": "Pb Ticket API", - "description": "Pb Ticket Controller" - }, - { - "name": "PersonTickets API", - "description": "Person Tickets Controller" - }, - { - "name": "Portal Config API", - "description": "Portal Config Controller" - }, - { - "name": "Portal Router Url API", - "description": "Router Url Controller" - }, - { - "name": "Portal Service Request API", - "description": "Service Request Controller" - }, - { - "name": "Portal Ticket API", - "description": "Portal Ticket Controller" - }, - { - "name": "Portal Ticket Approval API", - "description": "Ticket Approval Controller" - }, - { - "name": "Portal TicketEvaluate API", - "description": "Portal Ticket Evaluate Controller" - }, - { - "name": "Product", - "description": "Gv Product Controller" - }, - { - "name": "Request API", - "description": "Request Controller" - }, - { - "name": "SR NotifyCallBack API", - "description": "Notify Call Back Controller" - }, - { - "name": "Service Attachment API", - "description": "Service Attachment Controller" - }, - { - "name": "Service Desk API", - "description": "Service Desk Controller" - }, - { - "name": "ServiceCatalog", - "description": "Service Catalog Controller" - }, - { - "name": "ServiceCatalogPrivilege", - "description": "Service Catalog Privilege Controller" - }, - { - "name": "ServiceCategory", - "description": "Service Category Controller" - }, - { - "name": "ServiceCategoryPortal", - "description": "Service Category Portal Controller" - }, - { - "name": "ServiceFavourite", - "description": "Service Favourite Controller" - }, - { - "name": "ServiceFormDefinition", - "description": "Service Form Definition Controller" - }, - { - "name": "ServiceTicket", - "description": "Service Ticket Controller" - }, - { - "name": "SmSlaConfig API", - "description": "Sm Sla Config Controller" - }, - { - "name": "SmSlaConfigSR API", - "description": "Sm Sla Config SR Controller" - }, - { - "name": "Static Template API", - "description": "Itsm Static Template Controller" - }, - { - "name": "Tenant API", - "description": "Tenant Controller" - }, - { - "name": "Tenant User API", - "description": "Tenant User Controller" - }, - { - "name": "The Change Detail API configured as variable of XFS-BPM", - "description": "Bpm Business Detail Controller" - }, - { - "name": "TicketActivity API", - "description": "Ticket Activity Controller" - }, - { - "name": "TicketEvaluate API", - "description": "Ticket Evaluate Controller" - }, - { - "name": "UserInfo API", - "description": "User Info Controller" - }, - { - "name": "Work Desk API", - "description": "Work Desk Controller" - }, - { - "name": "pb-management-controller", - "description": "Pb Management Controller" - } - ], - "paths": { - "/itsm/api/v1/ad-towers/all-org": { - "get": { - "tags": [ - "Change User Tower API" - ], - "summary": "List org | [itsm.change.view]", - "operationId": "listTowerAllOrgUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«AdUserBriefAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listTowerAllOrg", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/ad-towers/all-org/pb": { - "get": { - "tags": [ - "Change User Tower API" - ], - "summary": "List org for PB | [itsm.change.view]", - "operationId": "listTowerAllOrgForPbUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«AdUserBriefAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listTowerAllOrgForPb", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/ad-towers/my-org": { - "get": { - "tags": [ - "Change User Tower API" - ], - "summary": "List user tower of my org | [itsm.change.view]", - "operationId": "listTowersOfMyOrgUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«AdTowerAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listTowersOfMyOrg", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/ad-towers/search": { - "post": { - "tags": [ - "Change User Tower API" - ], - "summary": "Search user tower | [itsm.change.view]", - "operationId": "searchTowersUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AdTowerSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«AdTowerAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchTowers", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/ad-users/extra/userinfo/{id}": { - "get": { - "tags": [ - "Change AD-User Tower API" - ], - "summary": "Search governance extra user info with userId | [itsm.change.view]", - "operationId": "getUserInfoByIdUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«UserApiVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getUserInfoById", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/ad-users/extra/{itCode}": { - "get": { - "tags": [ - "Change AD-User Tower API" - ], - "summary": "Search governance extra user info | [itsm.change.view]", - "operationId": "getUserInfoUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "itCode", - "in": "path", - "description": "itCode", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«AdUserBriefAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getUserInfo", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/ad-users/extra/{itCode}/{orgId}": { - "get": { - "tags": [ - "Change AD-User Tower API" - ], - "summary": "Search governance extra user info with orgId | [itsm.change.view]", - "operationId": "getUserInfoWithOrgIdUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "itCode", - "in": "path", - "description": "itCode", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "orgId", - "in": "path", - "description": "orgId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«AdUserBriefAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getUserInfoWithOrgId", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/ad-users/my-tower": { - "get": { - "tags": [ - "Change AD-User Tower API" - ], - "summary": "List users under default tower | [itsm.change.view]", - "operationId": "listUsersOfMyTowerUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«AdUserBriefAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listUsersOfMyTower", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/ad-users/search": { - "post": { - "tags": [ - "Change AD-User Tower API" - ], - "summary": "Search ad user list | [itsm.change.view]", - "operationId": "searchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AdUserSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«AdUserBriefAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/ad-users/{adGroup}": { - "get": { - "tags": [ - "Change AD-User Tower API" - ], - "summary": "Get user list by ad group | [itsm.change.view]", - "operationId": "listUsersByAdGroupUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "adGroup", - "in": "path", - "description": "adGroup", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«AdUserBriefAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listUsersByAdGroup", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/ad-users/{itCode}/tower": { - "get": { - "tags": [ - "Change AD-User Tower API" - ], - "summary": "Get user tower by it code | [itsm.change.view]", - "operationId": "getUserTowerUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "itCode", - "in": "path", - "description": "itCode", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«AdTowerAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getUserTower", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/admin/ticket/delete/{ticketNo}": { - "delete": { - "tags": [ - "Admin opt api" - ], - "summary": "按条件删除单据(单号或服务业务编码) | [itsm.admin.all]", - "operationId": "deleteByFormUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteByForm", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/robot/knowledge/search": { - "post": { - "tags": [ - "AI Robot api" - ], - "summary": "搜索/推荐知识 参数q模糊查询 | [itsm.knowledge.view]", - "operationId": "searchKnowledgeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmKnowledgePortalAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchKnowledge", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/robot/service/search": { - "post": { - "tags": [ - "AI Robot api" - ], - "summary": "搜索服务 参数q模糊查询 | [itsm.serviceCatalog.view]", - "operationId": "serviceSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "serviceSearch", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/robot/ticket/search": { - "post": { - "tags": [ - "AI Robot api" - ], - "summary": "单据查询 参数q模糊查询 | [itsm.incident.view]", - "operationId": "ticketSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketRobotReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ticketSearch", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/approval/batch-approve": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-批量审批 | [itsm.approveManagement.edit]", - "operationId": "batchApproveUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BatchApprovalVO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«Map«string,object»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchApprove", - "$permissions": [ - "itsm.approveManagement.edit" - ] - } - } - }, - "/itsm/api/v1/approval/search/catalog": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-变更目录 | [itsm.approveManagement.view]", - "operationId": "searchCatalogUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchCatalog", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/approval/search/change": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-变更单据 | [itsm.approveManagement.view]", - "operationId": "searchChangeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeRecordAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchChange", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/approval/search/incident": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-故障 | [itsm.approveManagement.view]", - "operationId": "searchIncidentUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketApprovalReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchIncident", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/approval/search/itsr": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-SR服务项 | [itsm.approveManagement.view]", - "operationId": "searchItsrUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogApprovalSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogItsmMyApprovedAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchItsr", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/approval/search/itsr-ticket": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-SR单据 | [itsm.approveManagement.view]", - "operationId": "searchItsrTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogApprovalSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchItsrTicket", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/approval/search/knowledge": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-查询知识 | [itsm.approveManagement.view]", - "operationId": "searchKnowledgeUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeApprovalReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmItsmMyApprovedAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchKnowledge", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/approval/search/my-approval-count": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-查询待我审批单据数量 | [itsm.approveManagement.view]", - "operationId": "searchMyApprovalCountUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,long»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMyApprovalCount", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/approval/search/my-submit-count": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-查询我提交待审数量 | [itsm.approveManagement.view]", - "operationId": "searchSubmitCountUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,long»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchSubmitCount", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/approval/search/problem": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-查询问题 | [itsm.approveManagement.view]", - "operationId": "searchPbUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbApprovalSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PbApprovalAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchPb", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/approval/search/sub-task": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-子任务 | [itsm.approveManagement.view]", - "operationId": "searchSubTaskUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketApprovalReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchSubTask", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/approval/search/task": { - "post": { - "tags": [ - "Approval" - ], - "summary": "审批管理-任务 | [itsm.approveManagement.view]", - "operationId": "searchTaskUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketApprovalReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchTask", - "$permissions": [ - "itsm.approveManagement.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/all-biz-group": { - "post": { - "tags": [ - "BizCategory" - ], - "summary": "查询已经关联业务类型的用户组 | [itsm.group.view]", - "operationId": "listBizGroupUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BizGroupSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listBizGroup", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/assign-to-me": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "指派给我 | [itsm.group.view]", - "operationId": "assignToMeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "assignToMe", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/create": { - "post": { - "tags": [ - "BizCategory" - ], - "summary": "新增业务分类 | [itsm.admin.all]", - "operationId": "createUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BizCategoryCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/biz-category/find-by-groups": { - "post": { - "tags": [ - "BizCategory" - ], - "summary": "根据关联用户组查询业务类型 | [itsm.group.view]", - "operationId": "findByGroupIdsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BizSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findByGroupIds", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/find-by-user/{userCode}": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "根据关联用户查询业务类型 | [itsm.group.view]", - "operationId": "findByUserUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "userCode", - "in": "path", - "description": "userCode", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findByUser", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/group": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "查询已经关联组织的用户组 | [itsm.admin.all]", - "operationId": "listGroupUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listGroup", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/biz-category/group-tree": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "group树 | [itsm.admin.all]", - "operationId": "groupTreeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationLevelGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "groupTree", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/biz-category/group/{bizId}": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "通过业务类型id查询group | [itsm.problem.view]", - "operationId": "findByBizIdUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "bizId", - "in": "path", - "description": "bizId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "filterByUser", - "in": "query", - "description": "filterByUser", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findByBizId", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/list": { - "post": { - "tags": [ - "BizCategory" - ], - "summary": "列表查询 | [itsm.admin.all]", - "operationId": "listUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BizCateforySearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«BizCategoryListAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/biz-category/my-departments": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "客户所属的组织 | [itsm.bizCategory.view]", - "operationId": "myDepartmentsUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«GovernanceDeptVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myDepartments", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/tree": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "业务树 | [itsm.bizCategory.view]", - "operationId": "treeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "tree", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/tree-company": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "业务树-兼容truescale | [itsm.bizCategory.view]", - "operationId": "treeCompanyUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeCompany", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/tree-portal": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "业务树 | [itsm.bizCategory.view]", - "operationId": "treePortalUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treePortal", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/tree/{department}": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "业务树 | [itsm.bizCategory.view]", - "operationId": "treeSearchUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "department", - "in": "path", - "description": "department", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeSearch", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/update": { - "put": { - "tags": [ - "BizCategory" - ], - "summary": "编辑业务分类 | [itsm.admin.all]", - "operationId": "updateUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BizCategoryUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/biz-category/work-desk/list": { - "post": { - "tags": [ - "BizCategory" - ], - "summary": "列表查询 | [itsm.bizCategory.view]", - "operationId": "workDeskListUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BizCateforySearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«BizCategoryListAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "workDeskList", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/work-desk/tree": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "业务树-工作台 | [itsm.bizCategory.view]", - "operationId": "treeForWorkDeskUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeForWorkDesk", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/api/v1/biz-category/{id}/delete": { - "delete": { - "tags": [ - "BizCategory" - ], - "summary": "删除业务分类 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/biz-category/{id}/delete-group": { - "delete": { - "tags": [ - "BizCategory" - ], - "summary": "删除业务分类和组的关系 | [itsm.admin.all]", - "operationId": "deleteGroupUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteGroup", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/biz-category/{id}/detail": { - "get": { - "tags": [ - "BizCategory" - ], - "summary": "业务分类详情 | [itsm.admin.all]", - "operationId": "detailUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«BizCategoryAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detail", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/bpm/business/detail/catalog/{requestNo}": { - "get": { - "tags": [ - "The Change Detail API configured as variable of XFS-BPM" - ], - "summary": "Get the change catalog publish info by request no | [itsm.change.view]", - "operationId": "catalogPublishDetailUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "requestNo", - "in": "path", - "description": "requestNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "catalogPublishDetail", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/bpm/business/detail/change/{requestNo}": { - "get": { - "tags": [ - "The Change Detail API configured as variable of XFS-BPM" - ], - "summary": "Get the change info by change request no | [itsm.change.view]", - "operationId": "changeRequestDetailUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "requestNo", - "in": "path", - "description": "requestNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "changeRequestDetail", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/bpm/task/catalog/approval/status": { - "post": { - "tags": [ - "BPM Task Sync API" - ], - "summary": "Update change catalog approval status | [itsm.change.edit]", - "operationId": "updateCatalogApprovalStatusUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TaskEventVO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateCatalogApprovalStatus", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/bpm/task/change/approval/status": { - "post": { - "tags": [ - "BPM Task Sync API" - ], - "summary": "Update change request approval status | [itsm.change.edit]", - "operationId": "updateChangeApprovalStatusUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TaskEventVO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateChangeApprovalStatus", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/cabs": { - "post": { - "tags": [ - "Change CAB API" - ], - "summary": "Create a CAB | [itsm.admin.all]", - "operationId": "createUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CabCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«CabAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/cabs/search": { - "post": { - "tags": [ - "Change CAB API" - ], - "summary": "Search CAB list | [itsm.change.view]", - "operationId": "searchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CabSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«CabAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/cabs/{id}": { - "get": { - "tags": [ - "Change CAB API" - ], - "summary": "Get the CAB info | [itsm.change.view]", - "operationId": "infoUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«CabAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.change.view" - ] - } - }, - "put": { - "tags": [ - "Change CAB API" - ], - "summary": "Update the CAB info | [itsm.change.view]", - "operationId": "updateUsingPUT_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CabUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«CabAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.change.view" - ] - } - }, - "delete": { - "tags": [ - "Change CAB API" - ], - "summary": "Delete a CAB | [itsm.change.view]", - "operationId": "deleteUsingDELETE_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/cal-window": { - "post": { - "tags": [ - "Change Window API" - ], - "summary": "Create a Window | [itsm.admin.all]", - "operationId": "createUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WindowCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«WindowAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/cal-window/publish/{id}": { - "put": { - "tags": [ - "Change Window API" - ], - "summary": "Publish the Window info | [itsm.admin.all]", - "operationId": "publishUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«WindowAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "publish", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/cal-window/recall/{id}": { - "put": { - "tags": [ - "Change Window API" - ], - "summary": "Recall the published Window | [itsm.admin.all]", - "operationId": "withdrawUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WindowRecallReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«WindowAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "withdraw", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/cal-window/search": { - "post": { - "tags": [ - "Change Window API" - ], - "summary": "Search Window list | [itsm.change.view]", - "operationId": "searchUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WindowSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«WindowAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/cal-window/{id}": { - "get": { - "tags": [ - "Change Window API" - ], - "summary": "Get the Window info | [itsm.admin.all, itsm.change.view]", - "operationId": "infoUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«WindowAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.admin.all", - "itsm.change.view" - ] - } - }, - "put": { - "tags": [ - "Change Window API" - ], - "summary": "Update the Window info | [itsm.admin.all]", - "operationId": "updateUsingPUT_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/WindowUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«WindowAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "delete": { - "tags": [ - "Change Window API" - ], - "summary": "Delete a Window | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/change-approvals/{changeId}/list": { - "get": { - "tags": [ - "Change Approvals API" - ], - "summary": "Get the change approval lists by changeId | [itsm.change.view]", - "operationId": "listUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,List«ChangeApprovalAO»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-approvals/{changeId}/stakeholder": { - "post": { - "tags": [ - "Change Approvals API" - ], - "summary": "Add stakeholders | [itsm.admin.all, itsm.change.edit]", - "operationId": "addStakeHolderUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeAprovalReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangePlanAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addStakeHolder", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-approvals/{changeId}/stakeholder/{userId}": { - "delete": { - "tags": [ - "Change Approvals API" - ], - "summary": "Remove a stakeholder | [itsm.admin.all, itsm.change.edit]", - "operationId": "removeStakeHolderUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "userId", - "in": "path", - "description": "userId", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangePlanAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "removeStakeHolder", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-area/{changeId}": { - "get": { - "tags": [ - "Change Area API" - ], - "summary": "Get the change plan by change id | [itsm.change.view]", - "operationId": "infoUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAreaAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.change.view" - ] - } - }, - "put": { - "tags": [ - "Change Area API" - ], - "summary": "Update the change plan | [itsm.admin.all, itsm.change.edit]", - "operationId": "updateUsingPUT_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeAreaReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAreaAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-automation": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "Save Automation work | [itsm.change.edit]", - "operationId": "saveUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeAutomationCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAutomationAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "save", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-automation/auto-exec-type/{changeId}": { - "get": { - "tags": [ - "Change Automation API" - ], - "summary": "查询变更有哪些自动化操作 | [itsm.change.view]", - "operationId": "execTypeByChangeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "execTypeByChange", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-automation/auto-execution/{id}": { - "put": { - "tags": [ - "Change Automation API" - ], - "summary": "Set automation work auto execution | [itsm.change.edit]", - "operationId": "autoExecuteUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "autoExecute", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-automation/awp-callback": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "awp 回调接口接口更新执行历史 | [itsm.change.view]", - "operationId": "callBackUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "callBack", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-automation/ci-type-id/{changeId}": { - "get": { - "tags": [ - "Change Automation API" - ], - "summary": "根据变更ID查询变更CI类型ID | [itsm.change.view]", - "operationId": "ciTypeByChangeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«int»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ciTypeByChange", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-automation/exec-account/{execType}/{changeId}": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "执行临时账号Action | [itsm.change.view]", - "operationId": "execAccountActionUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "execType", - "in": "path", - "description": "execType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CREATE_ACCOUNT", - "DISABLE_ACCOUNT", - "IMPLEMENT", - "MONITOR", - "RISK_ASSESSMENT", - "ROLLBACK", - "VERIFY" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«Void»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "execAccountAction", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-automation/exec-column/{execType}/{changeId}": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "查询动态列 | [itsm.change.view]", - "operationId": "execColumnsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "execType", - "in": "path", - "description": "execType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CREATE_ACCOUNT", - "DISABLE_ACCOUNT", - "IMPLEMENT", - "MONITOR", - "RISK_ASSESSMENT", - "ROLLBACK", - "VERIFY" - ] - } - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«DynamicColumnAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "execColumns", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-automation/exec-his/search/{execType}": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "查询自动化 验证 监控 回滚 列表 | [itsm.change.view]", - "operationId": "execSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "execType", - "in": "path", - "description": "execType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CREATE_ACCOUNT", - "DISABLE_ACCOUNT", - "IMPLEMENT", - "MONITOR", - "RISK_ASSESSMENT", - "ROLLBACK", - "VERIFY" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCiExecSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeCiExecAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "execSearch", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-automation/exec/batch/{execType}/{changeId}": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "批量执行脚本 | [itsm.change.edit]", - "operationId": "execCiBatchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "execType", - "in": "path", - "description": "execType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CREATE_ACCOUNT", - "DISABLE_ACCOUNT", - "IMPLEMENT", - "MONITOR", - "RISK_ASSESSMENT", - "ROLLBACK", - "VERIFY" - ] - } - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiExecReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "execCiBatch", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-automation/exec/orchs/{execType}": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "指定CI 与自动化类型,执行orchs脚本 | [itsm.admin.all, itsm.change.edit]", - "operationId": "executeOrchsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "execType", - "in": "path", - "description": "execType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CREATE_ACCOUNT", - "DISABLE_ACCOUNT", - "IMPLEMENT", - "MONITOR", - "RISK_ASSESSMENT", - "ROLLBACK", - "VERIFY" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCiExecReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiExecHisAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "executeOrchs", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-automation/exec/{execType}": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "指定CI 与自动化类型,执行脚本 | [itsm.admin.all, itsm.change.edit]", - "operationId": "execCiUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "execType", - "in": "path", - "description": "execType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CREATE_ACCOUNT", - "DISABLE_ACCOUNT", - "IMPLEMENT", - "MONITOR", - "RISK_ASSESSMENT", - "ROLLBACK", - "VERIFY" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCiExecReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiExecHisAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "execCi", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-automation/execute/action/{changeAutoId}": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "自动化实施 执行action | [itsm.admin.all, itsm.change.edit]", - "operationId": "executeActionUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeAutoId", - "in": "path", - "description": "changeAutoId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "executeAction", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-automation/execute/favorite/{automationWorkId}": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "Execute favorite action for awp system | [itsm.change.edit]", - "operationId": "executeFavoriteUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "automationWorkId", - "in": "path", - "description": "automationWorkId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "executeFavorite", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-automation/execute/{id}": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "Execute action for awp system | [itsm.change.edit]", - "operationId": "executeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "execute", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-automation/favorite/{executionId}": { - "get": { - "tags": [ - "Change Automation API" - ], - "summary": "Get favorite Automation Work Result | [itsm.change.view]", - "operationId": "getFavoriteAutomationWorkResultUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "executionId", - "in": "path", - "description": "executionId", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getFavoriteAutomationWorkResult", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-automation/monitor/check": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "监控检查,是否能添加监控 | [itsm.change.view]", - "operationId": "monitorCheckSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCiExecSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "monitorCheckSearch", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-automation/orchs/{executionKey}": { - "get": { - "tags": [ - "Change Automation API" - ], - "summary": "Get orchs Automation Work Result | [itsm.change.view]", - "operationId": "getOrchsAutomationWorkResultUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "executionKey", - "in": "path", - "description": "executionKey", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getOrchsAutomationWorkResult", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-automation/plan-time/{id}": { - "put": { - "tags": [ - "Change Automation API" - ], - "summary": "Edit change automation plan execute time | [itsm.change.edit]", - "operationId": "planTimeUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeAutomationUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAutomationAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "planTime", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-automation/search": { - "post": { - "tags": [ - "Change Automation API" - ], - "summary": "Get Automation work list by page | [itsm.change.view]", - "operationId": "searchUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeAutomationSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeAutomationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-automation/{id}": { - "delete": { - "tags": [ - "Change Automation API" - ], - "summary": "Delete Automation Work | [itsm.change.edit]", - "operationId": "delAutomationUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delAutomation", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/catalogs": { - "post": { - "tags": [ - "Change catalogs API" - ], - "summary": "Create a change catalog request | [itsm.change.edit]", - "operationId": "createUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCatalogCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/catalogs/approvals/{id}": { - "get": { - "tags": [ - "Change catalogs API" - ], - "summary": "Authorize the change catalog | [itsm.change.view]", - "operationId": "listApprovalRecordsUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ApprovalWorkflowAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listApprovalRecords", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/catalogs/authorize/{id}": { - "put": { - "tags": [ - "Change catalogs API" - ], - "summary": "Authorize the change catalog | [itsm.change.edit]", - "operationId": "authorizeUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "authorize", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/catalogs/cancel/{id}": { - "put": { - "tags": [ - "Change catalogs API" - ], - "summary": "cancel the change catalog request | [itsm.change.edit]", - "operationId": "cancelUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCatalogCancelReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "cancel", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/catalogs/copy/{id}": { - "put": { - "tags": [ - "Change catalogs API" - ], - "summary": "Copy the change catalog from existing one | [itsm.admin.all, itsm.change.edit]", - "operationId": "copyUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "copy", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/catalogs/my/requests": { - "post": { - "tags": [ - "Change catalogs API" - ], - "summary": "Search my requests of standard change catalog | [itsm.change.view]", - "operationId": "searchMyRequestsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMyRequests", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/catalogs/retire/{id}": { - "put": { - "tags": [ - "Change catalogs API" - ], - "summary": "Retire the change catalog | [itsm.admin.all, itsm.change.edit]", - "operationId": "retireUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCatalogRetireReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "retire", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/catalogs/search": { - "post": { - "tags": [ - "Change catalogs API" - ], - "summary": "Search change catalog | [itsm.change.view]", - "operationId": "searchUsingPOST_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/catalogs/{id}": { - "get": { - "tags": [ - "Change catalogs API" - ], - "summary": "Get the change catalog info | [itsm.change.view]", - "operationId": "infoUsingGET_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.change.view" - ] - } - }, - "put": { - "tags": [ - "Change catalogs API" - ], - "summary": "Update the change catalog request | [itsm.change.edit]", - "operationId": "updateUsingPUT_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCatalogUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/change-all-columns": { - "post": { - "tags": [ - "Change CI API" - ], - "summary": "get all show columns by ci type | [itsm.change.view]", - "operationId": "listAllShowColumnUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«int,List«ChangeCiColumn»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listAllShowColumn", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci/change_ci_type": { - "get": { - "tags": [ - "Change CI API" - ], - "summary": "get all change ci type list | [itsm.change.view]", - "operationId": "listAllChangeTypeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«int»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listAllChangeType", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci/ci-replenish/{changeId}": { - "get": { - "tags": [ - "Change CI API" - ], - "summary": "get ci replenish by change | [itsm.change.view]", - "operationId": "replenishUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiReplenishAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "replenish", - "$permissions": [ - "itsm.change.view" - ] - } - }, - "put": { - "tags": [ - "Change CI API" - ], - "summary": "update the ci replenish for change | [itsm.admin.all, itsm.change.edit]", - "operationId": "updateCiReplenishUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCiReplenishSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCiReplenishAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateCiReplenish", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/ci-replenish/{changeId}/{id}": { - "delete": { - "tags": [ - "Change CI API" - ], - "summary": "delete ci replenish by id | [itsm.admin.all, itsm.change.edit]", - "operationId": "deleteCiReplenishUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteCiReplenish", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/ci-type-name/{changeId}": { - "get": { - "tags": [ - "Change CI API" - ], - "summary": "get all ci type name by change | [itsm.change.view]", - "operationId": "ciTypeByChangeUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiTypeName»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ciTypeByChange", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci/ci/{changeId}": { - "put": { - "tags": [ - "Change CI API" - ], - "summary": "更新Ci 功能性 信息 | [itsm.admin.all, itsm.change.edit]", - "operationId": "updateCiInfoUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiUpdateReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateCiInfo", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - }, - "post": { - "tags": [ - "Change CI API" - ], - "summary": "Create the change ci record | [itsm.admin.all, itsm.change.edit]", - "operationId": "createUsingPOST_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/ci/{changeId}/{id}": { - "delete": { - "tags": [ - "Change CI API" - ], - "summary": "Remove the change ci record | [itsm.admin.all, itsm.change.edit]", - "operationId": "deleteCiUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCiAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteCi", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/cis/{changeId}": { - "post": { - "tags": [ - "Change CI API" - ], - "summary": "get ci list by change | [itsm.change.view]", - "operationId": "listCiByChangeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCiSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiByChange", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci/del-relation/{changeId}": { - "post": { - "tags": [ - "Change CI API" - ], - "summary": "Create the change ci relationship record | [itsm.admin.all, itsm.change.edit]", - "operationId": "delRelationUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delRelation", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/list-relations": { - "post": { - "tags": [ - "Change CI API" - ], - "summary": "get relationships by ci type and ci id list | [itsm.change.view]", - "operationId": "listCiRelationshipByTypeAndCiUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«int,List«ChangeCiRelationAO»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiRelationshipByTypeAndCi", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci/list-relations-page/{changeId}/{ciType}": { - "post": { - "tags": [ - "Change CI API" - ], - "summary": "CI关联CI 分页查询 | [itsm.change.view]", - "operationId": "listCiRelationshipByTypeAndCiPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "ciType", - "in": "path", - "description": "ciType", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeCiRelationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiRelationshipByTypeAndCiPage", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci/list-relations-type/{changeId}": { - "get": { - "tags": [ - "Change CI API" - ], - "summary": "CI关联CI 类型 | [itsm.change.view]", - "operationId": "listCiRelationTypeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«int»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiRelationType", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci/relation/{changeId}": { - "post": { - "tags": [ - "Change CI API" - ], - "summary": "Create the change ci relationship record | [itsm.admin.all, itsm.change.edit]", - "operationId": "createRelationshipUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiRelationReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCiAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createRelationship", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/relations/{ciId}": { - "get": { - "tags": [ - "Change CI API" - ], - "summary": "get relationship by ci type and ci id | [itsm.change.view]", - "operationId": "listCiRelationshipByTypeAndCiUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ciId", - "in": "path", - "description": "ciId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«int,List«ChangeCiRelationAO»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiRelationshipByTypeAndCi", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci/remove-ci/{changeId}": { - "post": { - "tags": [ - "Change CI API" - ], - "summary": "Remove the change ci record by change and ci ids list | [itsm.admin.all, itsm.change.edit]", - "operationId": "deleteCiByChangeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCiAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteCiByChange", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/remove-relation/{changeId}": { - "post": { - "tags": [ - "Change CI API" - ], - "summary": "Remove the change ci relationship record | [itsm.admin.all, itsm.change.edit]", - "operationId": "deleteRelationCiUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCiAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteRelationCi", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/replenish-ci/{changeId}": { - "post": { - "tags": [ - "Change CI API" - ], - "summary": "add an replenish ci for change | [itsm.admin.all, itsm.change.edit]", - "operationId": "replenishCiUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCiReplenishReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCiReplenishAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "replenishCi", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/save-all-relations/{changeId}": { - "post": { - "tags": [ - "Change CI API" - ], - "summary": "save all relationship for change | [itsm.change.edit]", - "operationId": "saveAllRelationShipsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "saveAllRelationShips", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci/search-column/{ciTypeId}": { - "get": { - "tags": [ - "Change CI API" - ], - "summary": "get change ci search column by type id | [itsm.change.view]", - "operationId": "listSearchColumnUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ciTypeId", - "in": "path", - "description": "ciTypeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Array«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listSearchColumn", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci/show-column/{ciTypeId}": { - "get": { - "tags": [ - "Change CI API" - ], - "summary": "get cmdb ci show column by type id | [itsm.change.view]", - "operationId": "listShowColumnByTypeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ciTypeId", - "in": "path", - "description": "ciTypeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiColumn»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listShowColumnByType", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci-sync/create-sr-ticket-sync/{changeNo}": { - "post": { - "tags": [ - "Change CI Sync API" - ], - "summary": "创建SR 审批同步单据 | [itsm.change.view]", - "operationId": "createSrTicket2syncCmdbUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeNo", - "in": "path", - "description": "changeNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createSrTicket2syncCmdb", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci-sync/create/{changeId}": { - "post": { - "tags": [ - "Change CI Sync API" - ], - "summary": "创建CI同步信息 | [itsm.change.edit]", - "operationId": "createUsingPOST_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiSyncItemReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-ci-sync/info/{changeId}": { - "get": { - "tags": [ - "Change CI Sync API" - ], - "summary": "查询CI同步信息 | [itsm.change.view]", - "operationId": "infoUsingGET_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiSyncItemAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci-sync/ip-table-modify/{changeNo}": { - "post": { - "tags": [ - "Change CI Sync API" - ], - "summary": "修改CMDB IP表信息 | [itsm.change.view]", - "operationId": "callCmdbUpdateIpTableUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeNo", - "in": "path", - "description": "changeNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "callCmdbUpdateIpTable", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci-sync/sc-recovery-ip/{changeNo}": { - "post": { - "tags": [ - "Change CI Sync API" - ], - "summary": "回收SC IP | [itsm.change.view]", - "operationId": "callScRecoveryIpUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeNo", - "in": "path", - "description": "changeNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "callScRecoveryIp", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci-sync/sync-to-cmdb/{changeNo}": { - "post": { - "tags": [ - "Change CI Sync API" - ], - "summary": "修改CMDB CI项 | [itsm.change.view]", - "operationId": "syncCiToCmdbUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeNo", - "in": "path", - "description": "changeNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "syncCiToCmdb", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-ci-sync/update/{changeId}": { - "put": { - "tags": [ - "Change CI Sync API" - ], - "summary": "更新CI同步信息 | [itsm.change.edit]", - "operationId": "updateUsingPUT_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiSyncItemReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-comment/comment/{changeId}": { - "post": { - "tags": [ - "Change Comment API" - ], - "summary": "Save Change Comment for Change | [itsm.change.view]", - "operationId": "createUsingPOST_6", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCommentCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCommentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-comment/comment/{changeId}/{commentId}": { - "delete": { - "tags": [ - "Change Comment API" - ], - "summary": "Delete Change Comment for Change | [itsm.admin.all, itsm.change.edit]", - "operationId": "deleteUsingDELETE_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "commentId", - "in": "path", - "description": "commentId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-comment/search/{changeId}": { - "post": { - "tags": [ - "Change Comment API" - ], - "summary": "Get connmet list by change | [itsm.change.view]", - "operationId": "listByChangeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCommentSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeCommentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listByChange", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "Create the change record | [itsm.change.edit]", - "operationId": "createUsingPOST_7", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCreateReqReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/changes/authorize/{id}": { - "put": { - "tags": [ - "Changes API" - ], - "summary": "Send to approve for the change request | [itsm.admin.all, itsm.change.edit]", - "operationId": "authorizeUsingPUT_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "authorize", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/changes/cancel/{id}": { - "put": { - "tags": [ - "Changes API" - ], - "summary": "cancel the change request | [itsm.admin.all, itsm.change.edit]", - "operationId": "cancelUsingPUT_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCancelReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "cancel", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/changes/change-by-application": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "Search Change by Application | [itsm.change.view]", - "operationId": "searchChangeByAppUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeByAppSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeApplicationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchChangeByApp", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/close-pre-save/{changeId}": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "预保存单据关闭信息 | [itsm.admin.all, itsm.change.view]", - "operationId": "closePreSaveUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCloseReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "closePreSave", - "$permissions": [ - "itsm.admin.all", - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/close/confirm/{changeId}": { - "get": { - "tags": [ - "Changes API" - ], - "summary": "检查用户是否能批准关闭此单据 | [itsm.change.view]", - "operationId": "canCloseConfirmUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "canCloseConfirm", - "$permissions": [ - "itsm.change.view" - ] - } - }, - "post": { - "tags": [ - "Changes API" - ], - "summary": "用户批准单据可关闭 | [itsm.change.view]", - "operationId": "closeConfirmUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "closeConfirm", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/close/{id}": { - "put": { - "tags": [ - "Changes API" - ], - "summary": "close the change request | [itsm.admin.all, itsm.change.edit]", - "operationId": "closeUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCloseReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "close", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/changes/copy": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "Copy the existing change record | [itsm.change.edit]", - "operationId": "copyUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCopyReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "copy", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/changes/export": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "导出数据 | [itsm.change.view]", - "operationId": "exportDataFileUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeExportSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "exportDataFile", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/incident/{id}": { - "put": { - "tags": [ - "Changes API" - ], - "summary": "Append incident to the base information for the change order | [itsm.admin.all, itsm.change.edit]", - "operationId": "attachIncidentUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "attachIncident", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/changes/itcm-search/full-text-search": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "全文检索 | [itsm.change.view]", - "operationId": "fullTextSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AiaSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SearchResultAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "fullTextSearch", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/itcm-search/sim-doc-rec": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "相似单据推荐 | [itsm.change.view]", - "operationId": "similarDocumentRecommendationUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AiaSimilaryDocReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«SimilarDocumentResultAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "similarDocumentRecommendation", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/my/opens": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "Search open changes of my | [itsm.change.view]", - "operationId": "searchMyOpenChangesUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeRecordAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMyOpenChanges", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/my/requests": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "Search change requests of my | [itsm.change.view]", - "operationId": "searchMyChangeRequestsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeRecordAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMyChangeRequests", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/my/requests/last/{count}": { - "get": { - "tags": [ - "Changes API" - ], - "summary": "Search last n of change requests of my | [itsm.change.view]", - "operationId": "searchMyLastChangeRequestsUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "count", - "in": "path", - "description": "count", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeRecordAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMyLastChangeRequests", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/notify/{id}/{approverType}": { - "put": { - "tags": [ - "Changes API" - ], - "summary": "close the change request | [itsm.admin.all, itsm.change.edit]", - "operationId": "notify4tstUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "approverType", - "in": "path", - "description": "approverType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "BCAB", - "GCAB", - "STAKEHOLDER", - "TCAB", - "TOWER_LEADER" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "notify4tst", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/changes/pre-check": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "Pre-check the change before creating | [itsm.change.edit]", - "operationId": "preCheckUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCreateReqReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCreateReq»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "preCheck", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/changes/release-account": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "releaseTempAccount | [itsm.change.view]", - "operationId": "releaseTempAccountUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "query", - "description": "changeId", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "releaseTempAccount", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/search": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "Search change records | [itsm.change.view]", - "operationId": "searchUsingPOST_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeRecordAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/search/basic": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "Search change basic items | [itsm.change.view]", - "operationId": "searchBasicItemsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeBasicItemAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchBasicItems", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/changes/urge/{id}": { - "post": { - "tags": [ - "Changes API" - ], - "summary": "urge Approver deal request | [itsm.change.edit]", - "operationId": "urgeApprovalUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "urgeApproval", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/changes/{ids}": { - "delete": { - "tags": [ - "Changes API" - ], - "summary": "Delete the change requests | [itsm.admin.all, itsm.change.edit]", - "operationId": "deleteUsingDELETE_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ids", - "in": "path", - "description": "ids", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/changes/{id}": { - "get": { - "tags": [ - "Changes API" - ], - "summary": "Get the change info by change id | [itsm.change.view]", - "operationId": "infoUsingGET_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.change.view" - ] - } - }, - "put": { - "tags": [ - "Changes API" - ], - "summary": "Update the change basic info | [itsm.admin.all, itsm.change.edit]", - "operationId": "updateUsingPUT_6", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-coordination/add-user": { - "post": { - "tags": [ - "Changes Coordination API" - ], - "summary": "Add a custom user | [itsm.admin.all, itsm.change.edit]", - "operationId": "addCustomUserUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCoordinationCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCoordinationUserAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addCustomUser", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-coordination/ci-list/{changeId}/{userId}": { - "get": { - "tags": [ - "Changes Coordination API" - ], - "summary": "List CI records of a user | [itsm.change.view]", - "operationId": "listUserCiUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "userId", - "in": "path", - "description": "userId", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listUserCi", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-coordination/feedback-report/{changeId}": { - "get": { - "tags": [ - "Changes Coordination API" - ], - "summary": "get feedback report data of the change | [itsm.change.view]", - "operationId": "feedbackReportUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCoordinationFeedbackReportAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "feedbackReport", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-coordination/feedback/{changeId}": { - "put": { - "tags": [ - "Changes Coordination API" - ], - "summary": "update feedback info | [itsm.change.edit]", - "operationId": "feedbackUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCoordinationFeedbackReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCoordinationUserAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "feedback", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-coordination/notify": { - "post": { - "tags": [ - "Changes Coordination API" - ], - "summary": "Manually Notify users | [itsm.admin.all, itsm.change.edit]", - "operationId": "notifyUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCoordinationNotifyReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCoordinationUserAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "notify", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-coordination/search": { - "post": { - "tags": [ - "Changes Coordination API" - ], - "summary": "search for change coordination list | [itsm.change.view]", - "operationId": "searchUsingPOST_6", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCoordinationSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeCoordinationUserAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-coordination/{changeId}/auto-notify": { - "put": { - "tags": [ - "Changes Coordination API" - ], - "summary": "Update the Auto Notify status of user | [itsm.admin.all, itsm.change.edit]", - "operationId": "updateAutoNotifyUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCoordinationAutoNotifyReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCoordinationUserAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateAutoNotify", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-coordination/{changeId}/{userId}": { - "delete": { - "tags": [ - "Changes Coordination API" - ], - "summary": "Remove customized user from coordination list | [itsm.admin.all, itsm.change.edit]", - "operationId": "removeCustomUserUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "userId", - "in": "path", - "description": "userId", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeCoordinationUserAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "removeCustomUser", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/cm/file/{fileType}": { - "post": { - "tags": [ - "Change File API" - ], - "summary": "Upload file api | [itsm.change.edit]", - "operationId": "uploadFileUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "fileType", - "in": "path", - "description": "fileType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "IMAGE", - "VIDEO" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeFileAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "uploadFile", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/cm/file/{id}": { - "get": { - "tags": [ - "Change File API" - ], - "summary": "Download file api | [itsm.change.view]", - "operationId": "downloadFileUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFile", - "$permissions": [ - "itsm.change.view" - ] - } - }, - "delete": { - "tags": [ - "Change File API" - ], - "summary": "Delete File Api | [itsm.change.edit]", - "operationId": "deleteUsingDELETE_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-plan/download/{fileId}": { - "get": { - "tags": [ - "Change Plan API" - ], - "summary": "download plan template | [itsm.change.view]", - "operationId": "downloadUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "fileId", - "in": "path", - "description": "fileId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK" - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "download", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-plan/{changeId}": { - "get": { - "tags": [ - "Change Plan API" - ], - "summary": "Get the change plan by change id | [itsm.change.view]", - "operationId": "infoUsingGET_6", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangePlanAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.change.view" - ] - } - }, - "put": { - "tags": [ - "Change Plan API" - ], - "summary": "Update the change plan | [itsm.admin.all, itsm.change.edit]", - "operationId": "updateUsingPUT_7", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangePlanReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangePlanAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-scene": { - "post": { - "tags": [ - "Change Scene API" - ], - "summary": "新增变更场景 | [itsm.admin.all]", - "operationId": "createUsingPOST_8", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeSceneCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeSceneAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/change-scene/init": { - "post": { - "tags": [ - "Change Scene API" - ], - "summary": "初始化场景数据 | [itsm.admin.all]", - "operationId": "initUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "init", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/change-scene/relate-scene/{templateId}": { - "post": { - "tags": [ - "Change Scene API" - ], - "summary": "查询模板关联的场景 | [itsm.change.view]", - "operationId": "findRelateSceneUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "templateId", - "in": "path", - "description": "templateId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeTemplateSceneDetailAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findRelateScene", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-scene/relate-template/{sceneId}": { - "post": { - "tags": [ - "Change Scene API" - ], - "summary": "批量新增场景关联的模板 | [itsm.admin.all]", - "operationId": "addRelateTemplateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "sceneId", - "in": "path", - "description": "sceneId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeSceneTempAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addRelateTemplate", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "delete": { - "tags": [ - "Change Scene API" - ], - "summary": "删除变更场景模板关联 | [itsm.admin.all]", - "operationId": "deleteRelateTemplateUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "sceneId", - "in": "path", - "description": "sceneId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteRelateTemplate", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/change-scene/search": { - "post": { - "tags": [ - "Change Scene API" - ], - "summary": "变更场景分页 | [itsm.change.view]", - "operationId": "searchUsingPOST_7", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeSceneSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeSceneAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-scene/tree": { - "post": { - "tags": [ - "Change Scene API" - ], - "summary": "变更场景树 | [itsm.change.view]", - "operationId": "treeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeSceneSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeSceneAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "tree", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-scene/{sceneId}": { - "put": { - "tags": [ - "Change Scene API" - ], - "summary": "更新变更场景 | [itsm.admin.all]", - "operationId": "updateUsingPUT_8", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "sceneId", - "in": "path", - "description": "sceneId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeSceneCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeSceneAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "delete": { - "tags": [ - "Change Scene API" - ], - "summary": "删除变更场景 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_6", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "sceneId", - "in": "path", - "description": "sceneId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeSceneAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/change-subtask/create": { - "post": { - "tags": [ - "ChangeSubTask API" - ], - "summary": "新增子任务 | [itsm.change.view]", - "operationId": "createUsingPOST_9", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CrSubTaskCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«CrSubTaskAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-subtask/edit/{subTaskId}": { - "post": { - "tags": [ - "ChangeSubTask API" - ], - "summary": "编辑子任务 | [itsm.change.view]", - "operationId": "updateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "subTaskId", - "in": "path", - "description": "subTaskId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CrSubTaskUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«CrSubTaskAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-subtask/search": { - "post": { - "tags": [ - "ChangeSubTask API" - ], - "summary": "分页查询子任务 | [itsm.change.view]", - "operationId": "searchUsingPOST_8", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CrSubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«CrSubTaskAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-subtask/search/{searchType}": { - "post": { - "tags": [ - "ChangeSubTask API" - ], - "summary": "分页查询子任务 | [itsm.change.view]", - "operationId": "searchTypeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "searchType", - "in": "path", - "description": "searchType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "MY_CREATE", - "PENDING_TO_ME" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CrSubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«CrSubTaskAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchType", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-subtask/{subTaskId}": { - "get": { - "tags": [ - "ChangeSubTask API" - ], - "summary": "子任务详情 | [itsm.change.view]", - "operationId": "infoUsingGET_7", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "subTaskId", - "in": "path", - "description": "subTaskId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«CrSubTaskAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-templates": { - "post": { - "tags": [ - "Change Templates API" - ], - "summary": "Create a template | [itsm.admin.all, itsm.change.edit]", - "operationId": "createUsingPOST_10", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeTemplateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-templates/all-org": { - "get": { - "tags": [ - "Change Templates API" - ], - "summary": "List org | [itsm.change.view]", - "operationId": "listTowerAllOrgUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«AdUserBriefAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listTowerAllOrg", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-templates/delete/{id}": { - "delete": { - "tags": [ - "Change Templates API" - ], - "summary": "delete the template | [itsm.admin.all, itsm.change.edit]", - "operationId": "deleteUsingDELETE_7", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-templates/list/{changeType}": { - "post": { - "tags": [ - "Change Templates API" - ], - "summary": "Search templates basic info by conditions | [itsm.change.view]", - "operationId": "listAvailableTemplatesUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeType", - "in": "path", - "description": "changeType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeTemplateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeTemplateBasicAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listAvailableTemplates", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-templates/my-requests": { - "post": { - "tags": [ - "Change Templates API" - ], - "summary": "Search my requests of change templates | [itsm.change.view]", - "operationId": "searchMyRequestsOfChangeTemplatesUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeTemplateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeTemplateAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMyRequestsOfChangeTemplates", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-templates/name-exist/{templateName}": { - "get": { - "tags": [ - "Change Templates API" - ], - "summary": "Valid template name is exist in system | [itsm.change.edit]", - "operationId": "validTemplateExistUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "templateName", - "in": "path", - "description": "templateName", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "validTemplateExist", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-templates/pre-publish/{id}": { - "put": { - "tags": [ - "Change Templates API" - ], - "summary": "Submit to admin for publish the template | [itsm.admin.all, itsm.change.edit]", - "description": "Only allow admin to publish the global template with specified change type.Common users are allowed to customize personal template with don't specify change type.", - "operationId": "prePublishUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "prePublish", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-templates/publish/{id}": { - "put": { - "tags": [ - "Change Templates API" - ], - "summary": "Publish the template | [itsm.admin.all, itsm.change.edit]", - "description": "Only allow admin to publish the global template with specified change type.Common users are allowed to customize personal template with don't specify change type.", - "operationId": "publishUsingPUT_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "publish", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-templates/retire/{id}": { - "put": { - "tags": [ - "Change Templates API" - ], - "summary": "retire the template | [itsm.admin.all, itsm.change.edit]", - "operationId": "retireUsingPUT_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeTemplateRetireReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "retire", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-templates/search": { - "post": { - "tags": [ - "Change Templates API" - ], - "summary": "Search template list | [itsm.change.view]", - "operationId": "searchUsingPOST_9", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeTemplateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeTemplateAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/change-templates/upgrade/{id}": { - "put": { - "tags": [ - "Change Templates API" - ], - "summary": "upgrade template version | [itsm.admin.all, itsm.change.edit]", - "description": "Only allow admin to upgrade template", - "operationId": "upgradeUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "upgrade", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-templates/withdraw/{id}": { - "put": { - "tags": [ - "Change Templates API" - ], - "summary": "withdraw the template | [itsm.admin.all, itsm.change.edit]", - "operationId": "withdrawUsingPUT_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "withdraw", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/change-templates/{id}": { - "get": { - "tags": [ - "Change Templates API" - ], - "summary": "Get the template info | [itsm.change.view]", - "operationId": "infoUsingGET_8", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.change.view" - ] - } - }, - "put": { - "tags": [ - "Change Templates API" - ], - "summary": "Update the template info | [itsm.admin.all, itsm.change.edit]", - "operationId": "updateUsingPUT_9", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeTemplateUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all", - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/conversation/assignee-wait/{conversationId}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "指派排队中的会话 | [itsm.admin.all]", - "operationId": "assigneeWaitConversationUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "conversationId", - "in": "path", - "description": "conversationId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConversationSwitchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "assigneeWaitConversation", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/conversation/connect-users": { - "get": { - "tags": [ - "Chat Conversation API" - ], - "summary": "获取当前节点连接用户 | [itsm.admin.all]", - "operationId": "getConnectUsersUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getConnectUsers", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/conversation/count": { - "get": { - "tags": [ - "Chat Conversation API" - ], - "summary": "会话数量 | [itsm.ticket.view]", - "operationId": "conversationCountUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ConversationCountAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationCount", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/conversation/customer/ticket": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "分页查询客户单据 | [itsm.ticket.view]", - "operationId": "searchUsingPOST_10", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/conversation/exist/wait-or-service-chat": { - "get": { - "tags": [ - "Chat Conversation API" - ], - "summary": "获取当前用户是否在排队或者进行人工聊天 | [itsm.ticket.view]", - "operationId": "getUserExistWaitOrServiceChatUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getUserExistWaitOrServiceChat", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/conversation/exit-wait": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "退出排队 | [itsm.ticket.view]", - "operationId": "conversationExistWaitUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ExitWaitReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChatExitResultAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationExistWait", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/conversation/finish/{id}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "结束会话 | [itsm.ticket.view]", - "operationId": "finishConversationUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "finishConversation", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/conversation/manage/page": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "会话记录列表 | [itsm.admin.all]", - "operationId": "conversationManagePageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConversationManageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatConversationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationManagePage", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/conversation/page": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "会话列表 | [itsm.portal.view]", - "operationId": "conversationPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConversationSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatConversationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationPage", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/conversation/pick-up/{id}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "接起会话 | [itsm.portal.view]", - "operationId": "pickUpConversationUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChatPickResultAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "pickUpConversation", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/conversation/relate-incident/{id}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "查询关联的故障单号 | [itsm.ticket.view]", - "operationId": "getRelateIncidentUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChatIncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getRelateIncident", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/conversation/switch/{id}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "转接会话 | [itsm.ticket.view]", - "operationId": "switchConversationUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConversationSwitchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "switchConversation", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/conversation/upgrade/{id}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "升级会话关联的单据 | [itsm.ticket.view]", - "operationId": "upgradeConversationTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UpgradeTicket", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "upgradeConversationTicket", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/conversation/wait/page": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "等待会话列表 | [itsm.portal.view]", - "operationId": "conversationWaitPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConversationSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatConversationWaitAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationWaitPage", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/assignee-wait/{conversationId}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "指派排队中的会话 | [itsm.admin.all]", - "operationId": "assigneeWaitConversationUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "conversationId", - "in": "path", - "description": "conversationId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConversationSwitchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "assigneeWaitConversation", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/conversation/connect-users": { - "get": { - "tags": [ - "Chat Conversation API" - ], - "summary": "获取当前节点连接用户 | [itsm.admin.all]", - "operationId": "getConnectUsersUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getConnectUsers", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/conversation/count": { - "get": { - "tags": [ - "Chat Conversation API" - ], - "summary": "会话数量 | [itsm.ticket.view]", - "operationId": "conversationCountUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ConversationCountAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationCount", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/customer/ticket": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "分页查询客户单据 | [itsm.ticket.view]", - "operationId": "searchUsingPOST_11", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/exist/wait-or-service-chat": { - "get": { - "tags": [ - "Chat Conversation API" - ], - "summary": "获取当前用户是否在排队或者进行人工聊天 | [itsm.ticket.view]", - "operationId": "getUserExistWaitOrServiceChatUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getUserExistWaitOrServiceChat", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/exit-wait": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "退出排队 | [itsm.ticket.view]", - "operationId": "conversationExistWaitUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ExitWaitReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChatExitResultAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationExistWait", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/finish/{id}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "结束会话 | [itsm.ticket.view]", - "operationId": "finishConversationUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "finishConversation", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/manage/page": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "会话记录列表 | [itsm.admin.all]", - "operationId": "conversationManagePageUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConversationManageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatConversationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationManagePage", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/conversation/page": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "会话列表 | [itsm.portal.view]", - "operationId": "conversationPageUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConversationSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatConversationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationPage", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/pick-up/{id}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "接起会话 | [itsm.portal.view]", - "operationId": "pickUpConversationUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChatPickResultAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "pickUpConversation", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/relate-incident/{id}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "查询关联的故障单号 | [itsm.ticket.view]", - "operationId": "getRelateIncidentUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChatIncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getRelateIncident", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/switch/{id}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "转接会话 | [itsm.ticket.view]", - "operationId": "switchConversationUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConversationSwitchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "switchConversation", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/upgrade/{id}": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "升级会话关联的单据 | [itsm.ticket.view]", - "operationId": "upgradeConversationTicketUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UpgradeTicket", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "upgradeConversationTicket", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/conversation/wait/page": { - "post": { - "tags": [ - "Chat Conversation API" - ], - "summary": "等待会话列表 | [itsm.portal.view]", - "operationId": "conversationWaitPageUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ConversationSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatConversationWaitAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationWaitPage", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/chat-message/list": { - "post": { - "tags": [ - "Chat Message API" - ], - "summary": "查询聊天记录列表 | [itsm.ticket.view]", - "operationId": "messageListUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChatMessageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChatMessageAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "messageList", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/chat-message/page": { - "post": { - "tags": [ - "Chat Message API" - ], - "summary": "分页查询聊天记录 | [itsm.ticket.view]", - "operationId": "messagePageUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChatMessageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatMessage»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "messagePage", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/chat-message/send": { - "post": { - "tags": [ - "Chat Message API" - ], - "summary": "发送聊天消息 | [itsm.ticket.view]", - "operationId": "messagePageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChatMessage4Mq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatMessage»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "messagePage", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/chat-message/list": { - "post": { - "tags": [ - "Chat Message API" - ], - "summary": "查询聊天记录列表 | [itsm.ticket.view]", - "operationId": "messageListUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChatMessageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChatMessageAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "messageList", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/chat-message/page": { - "post": { - "tags": [ - "Chat Message API" - ], - "summary": "分页查询聊天记录 | [itsm.ticket.view]", - "operationId": "messagePageUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChatMessageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatMessage»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "messagePage", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/chat-message/send": { - "post": { - "tags": [ - "Chat Message API" - ], - "summary": "发送聊天消息 | [itsm.ticket.view]", - "operationId": "messagePageUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChatMessage4Mq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatMessage»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "messagePage", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/chat-monitor/service-user/page": { - "post": { - "tags": [ - "Chat Monitor API" - ], - "summary": "坐席监控列表 | [itsm.admin.all]", - "operationId": "serviceUserMonitorPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChatServiceUserMonitorSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatServiceUserMonitorAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "serviceUserMonitorPage", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/chat-monitor/wait/page": { - "post": { - "tags": [ - "Chat Monitor API" - ], - "summary": "排队监控列表 | [itsm.admin.all]", - "operationId": "waitMonitorPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChatWaitMonitorSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatWaitMonitorAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "waitMonitorPage", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/chat-statistic/conversation/page": { - "post": { - "tags": [ - "Chat Statistic API" - ], - "summary": "会话统计列表 | [itsm.admin.all]", - "operationId": "conversationStatisticPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChatConversationStatisticSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatConversationStatisticAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "conversationStatisticPage", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/chat-statistic/wait/page": { - "post": { - "tags": [ - "Chat Statistic API" - ], - "summary": "排队统计列表 | [itsm.admin.all]", - "operationId": "waitStatisticPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChatWaitStatisticSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChatWaitStatisticAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "waitStatisticPage", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/cmdb/ci-query/search/{ciTypeId}": { - "post": { - "tags": [ - "Cmdb Api" - ], - "summary": "search | [itsm.ticket.view]", - "operationId": "searchUsingPOST_12", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ciTypeId", - "in": "path", - "description": "ciTypeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CiSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«Document»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/cmdb/ci-query/{ciId}": { - "post": { - "tags": [ - "Cmdb Api" - ], - "summary": "searchCiInfoByCiId | [itsm.ticket.view]", - "operationId": "searchCiInfoByCiIdUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ciId", - "in": "path", - "description": "ciId", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Document»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchCiInfoByCiId", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/cmdb/ci-types/{typeId}": { - "get": { - "tags": [ - "Cmdb Api" - ], - "summary": "info | [itsm.ticket.view]", - "operationId": "infoUsingGET_9", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "typeId", - "in": "path", - "description": "typeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«CiTypeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/cmdb/cirelationship/relationship/search/{ciId}": { - "get": { - "tags": [ - "Cmdb Api" - ], - "summary": "relationshipLists | [itsm.ticket.view]", - "operationId": "relationshipListsUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ciId", - "in": "path", - "description": "ciId", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«CiTypeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "relationshipLists", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/cmdb/cis/ci-relationship-by-ids/{typeId}": { - "post": { - "tags": [ - "Cmdb Api" - ], - "summary": "ciRelationship | [itsm.ticket.view]", - "operationId": "ciRelationshipUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "typeId", - "in": "path", - "description": "typeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CiSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«CiRelationVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ciRelationship", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/cmdb/cis/ci-type-list": { - "get": { - "tags": [ - "Cmdb Api" - ], - "summary": "ciTypeList | [itsm.ticket.view]", - "operationId": "ciTypeListUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "name", - "in": "query", - "description": "name", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«CiTypeListAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ciTypeList", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/cmdb/cis/field-list-by-column/{typeId}": { - "post": { - "tags": [ - "Cmdb Api" - ], - "summary": "getFieldListByColumn | [itsm.ticket.view]", - "operationId": "getFieldListByColumnUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "typeId", - "in": "path", - "description": "typeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CiTypeFieldListReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Set«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "deprecated": true, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getFieldListByColumn", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/cmdb/cis/search/{typeId}": { - "post": { - "tags": [ - "Cmdb Api" - ], - "summary": "cis | [itsm.ticket.view]", - "operationId": "cisUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "typeId", - "in": "path", - "description": "typeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CiSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«Document»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "cis", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/cmdb/cis/type-infos": { - "post": { - "tags": [ - "Cmdb Api" - ], - "summary": "ciTypeInfo | [itsm.ticket.view]", - "operationId": "ciTypeInfoUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TypeInfosVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ciTypeInfo", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/common/config/{key}": { - "get": { - "tags": [ - "Change Common Api" - ], - "summary": "get governance config | [itsm.change.view]", - "operationId": "getGovernanceConfigUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "key", - "in": "path", - "description": "key", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ConfigAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getGovernanceConfig", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/common/list/{keys}": { - "get": { - "tags": [ - "Change Common Api" - ], - "summary": "get governance config list | [itsm.change.view]", - "operationId": "getGovernanceConfigListUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "keys", - "in": "path", - "description": "keys", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getGovernanceConfigList", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/common/email-entry/cra": { - "post": { - "tags": [ - "Common Email Entry API" - ], - "summary": "[NO SECURE] Change Request Approval for email user", - "operationId": "changeRequestApprovalUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BatchApprovalVO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangePlanAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "changeRequestApproval", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/common/email-entry/cra-check": { - "post": { - "tags": [ - "Common Email Entry API" - ], - "summary": "[NO SECURE] Pre-check the user permission for Email Request Approval", - "operationId": "preCheckForEmailRequestApprovalUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailTokenForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "preCheckForEmailRequestApproval", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/devops-change/": { - "post": { - "tags": [ - "Integration Change API" - ], - "summary": "receive Jira message and create an change | [itsm.change.edit]", - "operationId": "jiraChangeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeAutoCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "jiraChange", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/devops-change/jira-change": { - "post": { - "tags": [ - "Integration Change API" - ], - "summary": "[NO SECURE] receive a jira request and create an change", - "operationId": "jiraChangeUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - } - } - } - }, - "responses": { - "200": { - "description": "OK" - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "jiraChange", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/devops-change/template": { - "post": { - "tags": [ - "Integration Change API" - ], - "summary": "[NO SECURE] receive a jira request and create an change", - "operationId": "templateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - } - } - } - }, - "responses": { - "200": { - "description": "OK" - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "template", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/devops-change/{id}/close": { - "put": { - "tags": [ - "Integration Change API" - ], - "summary": "receive Jira message and close an change | [itsm.change.edit]", - "operationId": "jiraCloseChangeUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCloseReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "jiraCloseChange", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/duty-class-change": { - "post": { - "tags": [ - "Duty Class Change API" - ], - "summary": "申请换班 | [itsm.duty-class-change.create]", - "operationId": "createUsingPOST_11", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassChangeReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.duty-class-change.create" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/approve/{id}": { - "put": { - "tags": [ - "Duty Class Change API" - ], - "summary": "换班审批 | [itsm.duty.create]", - "operationId": "approveUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassChangeApprovalReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "approve", - "$permissions": [ - "itsm.duty.create" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/change-users/{dutyId}/{dutyClassId}/{dutyDate}": { - "get": { - "tags": [ - "Duty Class Change API" - ], - "summary": "换班申请-换班人员 | [itsm.duty-class-change.view]", - "operationId": "listChangUserUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyId", - "in": "path", - "description": "dutyId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "dutyClassId", - "in": "path", - "description": "dutyClassId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "dutyDate", - "in": "path", - "description": "dutyDate", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Set«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listChangUser", - "$permissions": [ - "itsm.duty-class-change.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/list-to-be-executed-class/{dutyId}": { - "get": { - "tags": [ - "Duty Class Change API" - ], - "summary": "换班申请-待值班的班次 | [itsm.duty-class-change.view]", - "operationId": "listToBeExecutedClassUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyId", - "in": "path", - "description": "dutyId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«DutyClassAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listToBeExecutedClass", - "$permissions": [ - "itsm.duty-class-change.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/list-to-be-executed-date/{dutyId}/{dutyClassId}": { - "get": { - "tags": [ - "Duty Class Change API" - ], - "summary": "换班申请-待值班的日期 | [itsm.duty-class-change.view]", - "operationId": "listToBeExecutedDutyDateUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyId", - "in": "path", - "description": "dutyId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "dutyClassId", - "in": "path", - "description": "dutyClassId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Set«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listToBeExecutedDutyDate", - "$permissions": [ - "itsm.duty-class-change.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/my-search": { - "post": { - "tags": [ - "Duty Class Change API" - ], - "summary": "我申请的换班 分页查询 | [itsm.duty-class-change.view]", - "operationId": "mySearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassChangeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyClassChangeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "mySearch", - "$permissions": [ - "itsm.duty-class-change.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/my-to-be-executed-class/{dutyId}": { - "get": { - "tags": [ - "Duty Class Change API" - ], - "summary": "换班申请-我的待值班的班次 | [itsm.duty-class-change.view]", - "operationId": "myToBeExecutedClassUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyId", - "in": "path", - "description": "dutyId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«DutyClassAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myToBeExecutedClass", - "$permissions": [ - "itsm.duty-class-change.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/my-to-be-executed-date/{dutyId}/{dutyClassId}": { - "get": { - "tags": [ - "Duty Class Change API" - ], - "summary": "换班申请-我的待值班的日期 | [itsm.duty-class-change.view]", - "operationId": "myToBeExecutedDutyDateUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyId", - "in": "path", - "description": "dutyId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "dutyClassId", - "in": "path", - "description": "dutyClassId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Set«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myToBeExecutedDutyDate", - "$permissions": [ - "itsm.duty-class-change.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/my-to-be-executed-duty": { - "get": { - "tags": [ - "Duty Class Change API" - ], - "summary": "换班申请-我的待值班的值班表 | [itsm.duty-class-change.view]", - "operationId": "myToBeExecutedDutyUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«DutyAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myToBeExecutedDuty", - "$permissions": [ - "itsm.duty-class-change.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/revoke/{id}": { - "put": { - "tags": [ - "Duty Class Change API" - ], - "summary": "撤回换班 | [itsm.duty-class-change.edit]", - "operationId": "revokeUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "revoke", - "$permissions": [ - "itsm.duty-class-change.edit" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/search": { - "post": { - "tags": [ - "Duty Class Change API" - ], - "summary": "排班管理员-换班分页查询 | [itsm.duty.create]", - "operationId": "searchUsingPOST_13", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassChangeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyClassChangeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.duty.create" - ] - } - } - }, - "/itsm/api/v1/duty-class-change/{id}": { - "get": { - "tags": [ - "Duty Class Change API" - ], - "summary": "换班详情 | [itsm.duty-class-change.view]", - "operationId": "infoUsingGET_10", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassChangeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.duty-class-change.view" - ] - } - } - }, - "/itsm/api/v1/duty-class": { - "post": { - "tags": [ - "Duty Class API" - ], - "summary": "创建班次 | [itsm.duty-class.create]", - "operationId": "createUsingPOST_12", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.duty-class.create" - ] - } - } - }, - "/itsm/api/v1/duty-class/export-excel": { - "post": { - "tags": [ - "Duty Class API" - ], - "summary": "班次导出 | [itsm.duty-class.view]", - "operationId": "exportExcelUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "exportExcel", - "$permissions": [ - "itsm.duty-class.view" - ] - } - } - }, - "/itsm/api/v1/duty-class/search": { - "post": { - "tags": [ - "Duty Class API" - ], - "summary": "班次分页查询 | [itsm.duty-class.view]", - "operationId": "searchUsingPOST_14", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyClassAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.duty-class.view" - ] - } - } - }, - "/itsm/api/v1/duty-class/user-list": { - "post": { - "tags": [ - "Duty Class API" - ], - "summary": "班次人员查询 | [itsm.duty-class.view]", - "operationId": "userListUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«DutyClassUserAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "userList", - "$permissions": [ - "itsm.duty-class.view" - ] - } - } - }, - "/itsm/api/v1/duty-class/{id}": { - "get": { - "tags": [ - "Duty Class API" - ], - "summary": "班次详情 | [itsm.duty-class.view]", - "operationId": "infoUsingGET_11", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.duty-class.view" - ] - } - }, - "put": { - "tags": [ - "Duty Class API" - ], - "summary": "班次编辑 | [itsm.duty-class.edit]", - "operationId": "editUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "edit", - "$permissions": [ - "itsm.duty-class.edit" - ] - } - }, - "delete": { - "tags": [ - "Duty Class API" - ], - "summary": "班次删除 | [itsm.duty-class.delete]", - "operationId": "deleteUsingDELETE_8", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.duty-class.delete" - ] - } - } - }, - "/itsm/api/v1/duty-class-leave": { - "post": { - "tags": [ - "Duty Class Leave API" - ], - "summary": "请假申请 | [itsm.duty-class-leave.create]", - "operationId": "createUsingPOST_13", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassLeaveReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassLeaveAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.duty-class-leave.create" - ] - } - } - }, - "/itsm/api/v1/duty-class-leave/approve/{id}": { - "post": { - "tags": [ - "Duty Class Leave API" - ], - "summary": "请假审批 | [itsm.duty.create]", - "operationId": "approveUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassLeaveApproveReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassLeaveAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "approve", - "$permissions": [ - "itsm.duty.create" - ] - } - } - }, - "/itsm/api/v1/duty-class-leave/my-search": { - "post": { - "tags": [ - "Duty Class Leave API" - ], - "summary": "值班人员-我的审批-请假审批分页 | [itsm.duty-class-leave.view]", - "operationId": "searchMineUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassLeaveSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyClassLeaveAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMine", - "$permissions": [ - "itsm.duty-class-leave.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-leave/replace-users/{id}": { - "get": { - "tags": [ - "Duty Class Leave API" - ], - "summary": "请假审批-顶班人员列表 | [itsm.duty.create]", - "operationId": "listReplaceUsersUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Set«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listReplaceUsers", - "$permissions": [ - "itsm.duty.create" - ] - } - } - }, - "/itsm/api/v1/duty-class-leave/revoke/{id}": { - "put": { - "tags": [ - "Duty Class Leave API" - ], - "summary": "请假撤销 | [itsm.duty-class-leave.edit]", - "operationId": "revokeUsingPUT_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassLeaveAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "revoke", - "$permissions": [ - "itsm.duty-class-leave.edit" - ] - } - } - }, - "/itsm/api/v1/duty-class-leave/search": { - "post": { - "tags": [ - "Duty Class Leave API" - ], - "summary": "排班管理员-值班审批-请假审批分页 | [itsm.duty.create]", - "operationId": "searchUsingPOST_15", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassLeaveSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyClassLeaveAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.duty.create" - ] - } - } - }, - "/itsm/api/v1/duty-class-leave/{id}": { - "get": { - "tags": [ - "Duty Class Leave API" - ], - "summary": "请假申请详情 | [itsm.duty-class-leave.view]", - "operationId": "infoUsingGET_12", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassLeaveAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.duty-class-leave.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-log-act/list": { - "post": { - "tags": [ - "Duty Class Log Act API" - ], - "summary": "查询日志信息 | [itsm.duty-class-log.view]", - "operationId": "listUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassLogActInfoSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«DutyClassLogActInfoAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.duty-class-log.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-log/batch-sign-in": { - "post": { - "tags": [ - "Duty Class Log API" - ], - "summary": "批量签到 | [itsm.duty-class-log.edit]", - "operationId": "batchSignInUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchSignIn", - "$permissions": [ - "itsm.duty-class-log.edit" - ] - } - } - }, - "/itsm/api/v1/duty-class-log/batch-sign-out": { - "post": { - "tags": [ - "Duty Class Log API" - ], - "summary": "批量签退 | [itsm.duty-class-log.edit]", - "operationId": "batchSignOutUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchSignOut", - "$permissions": [ - "itsm.duty-class-log.edit" - ] - } - } - }, - "/itsm/api/v1/duty-class-log/list": { - "post": { - "tags": [ - "Duty Class Log API" - ], - "summary": "排版管理日历查询 | [itsm.duty-class-log.view]", - "operationId": "listUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyLogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«DutyClassLogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.duty-class-log.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-log/list/my-to-sign-in": { - "get": { - "tags": [ - "Duty Class Log API" - ], - "summary": "待签到分页查询 | [itsm.duty-class-log.view]", - "operationId": "toSignInPageUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyClassLogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "toSignInPage", - "$permissions": [ - "itsm.duty-class-log.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-log/list/my-to-sign-out": { - "get": { - "tags": [ - "Duty Class Log API" - ], - "summary": "待签退分页查询 | [itsm.duty-class-log.view]", - "operationId": "toSignOutPageUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyClassLogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "toSignOutPage", - "$permissions": [ - "itsm.duty-class-log.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-log/my/list": { - "post": { - "tags": [ - "Duty Class Log API" - ], - "summary": "我的排班日历查询 | [itsm.duty-class-log.view]", - "operationId": "myListUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyLogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«DutyClassLogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myList", - "$permissions": [ - "itsm.duty-class-log.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-log/{id}": { - "put": { - "tags": [ - "Duty Class Log API" - ], - "summary": "编辑日志 | [itsm.duty-class-log.edit]", - "operationId": "editUsingPUT_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyLogReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassLogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "edit", - "$permissions": [ - "itsm.duty-class-log.edit" - ] - } - }, - "post": { - "tags": [ - "Duty Class Log API" - ], - "summary": "日志详情 | [itsm.duty-class-log.view]", - "operationId": "infoUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassLogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.duty-class-log.view" - ] - } - }, - "delete": { - "tags": [ - "Duty Class Log API" - ], - "summary": "删除日志 | [itsm.duty-class-log.delete]", - "operationId": "deleteUsingDELETE_9", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassLogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.duty-class-log.delete" - ] - } - } - }, - "/itsm/api/v1/duty-class-log-ticket/relate/search": { - "post": { - "tags": [ - "Duty Class Log Ticket API" - ], - "summary": "关联单据分页查询 | [itsm.duty-class-log.view]", - "operationId": "searchUsingPOST_16", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassLogRelateTicketSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyClassLogTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.duty-class-log.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-log-ticket/ticket/search": { - "post": { - "tags": [ - "Duty Class Log Ticket API" - ], - "summary": "未关联单据分页查询 | [itsm.duty-class-log.view]", - "operationId": "ticketSearchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassLogTicketSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyClassLogTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ticketSearch", - "$permissions": [ - "itsm.duty-class-log.view" - ] - } - } - }, - "/itsm/api/v1/duty-class-log-ticket/{dutyLogId}": { - "post": { - "tags": [ - "Duty Class Log Ticket API" - ], - "summary": "创建关联单据 | [itsm.duty-class-log.edit]", - "operationId": "createUsingPOST_14", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyLogId", - "in": "path", - "description": "dutyLogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassLogTicketReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«DutyClassLogTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.duty-class-log.edit" - ] - } - }, - "delete": { - "tags": [ - "Duty Class Log Ticket API" - ], - "summary": "关联单据删除 | [itsm.duty-class-log.edit]", - "operationId": "deleteUsingDELETE_10", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyLogId", - "in": "path", - "description": "dutyLogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassLogTicketReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«DutyClassLogTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.duty-class-log.edit" - ] - } - } - }, - "/itsm/api/v1/duty-class-schedule": { - "post": { - "tags": [ - "Duty Class Schedule API" - ], - "summary": "创建排班 | [itsm.duty-class-schedule.create]", - "operationId": "createUsingPOST_15", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassScheduleReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassScheduleAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.duty-class-schedule.create" - ] - } - } - }, - "/itsm/api/v1/duty-class-schedule/{id}": { - "get": { - "tags": [ - "Duty Class Schedule API" - ], - "summary": "排班详情 | [itsm.duty-class-schedule.view]", - "operationId": "infoUsingGET_13", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassScheduleAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.duty-class-schedule.view" - ] - } - }, - "put": { - "tags": [ - "Duty Class Schedule API" - ], - "summary": "编辑排班 | [itsm.duty-class-schedule.edit]", - "operationId": "editUsingPUT_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyClassScheduleReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassScheduleAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "edit", - "$permissions": [ - "itsm.duty-class-schedule.edit" - ] - } - }, - "delete": { - "tags": [ - "Duty Class Schedule API" - ], - "summary": "删除排班 | [itsm.duty-class-schedule.delete]", - "operationId": "deleteUsingDELETE_11", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyClassScheduleAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.duty-class-schedule.delete" - ] - } - } - }, - "/itsm/api/v1/duty/": { - "post": { - "tags": [ - "Duty API" - ], - "summary": "新增值班表 | [itsm.duty.create]", - "operationId": "createUsingPOST_16", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.duty.create" - ] - } - } - }, - "/itsm/api/v1/duty/search": { - "post": { - "tags": [ - "Duty API" - ], - "summary": "分页查询值班表 | [itsm.duty.view]", - "operationId": "searchUsingPOST_17", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutySearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.duty.view" - ] - } - } - }, - "/itsm/api/v1/duty/{dutyId}": { - "get": { - "tags": [ - "Duty API" - ], - "summary": "值班表详情 | [itsm.duty.view]", - "operationId": "infoUsingGET_14", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyId", - "in": "path", - "description": "dutyId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.duty.view" - ] - } - }, - "put": { - "tags": [ - "Duty API" - ], - "summary": "更新值班表 | [itsm.duty.update]", - "operationId": "updateUsingPUT_10", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyId", - "in": "path", - "description": "dutyId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.duty.update" - ] - } - }, - "delete": { - "tags": [ - "Duty API" - ], - "summary": "删除值班表 | [itsm.duty.delete]", - "operationId": "deleteUsingDELETE_12", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyId", - "in": "path", - "description": "dutyId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.duty.delete" - ] - } - } - }, - "/itsm/api/v1/duty-festival/": { - "post": { - "tags": [ - "Duty Festival API" - ], - "summary": "新增节假日 | [itsm.admin.all]", - "operationId": "createUsingPOST_17", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyFestivalReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyFestivalAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/duty-festival/search": { - "post": { - "tags": [ - "Duty Festival API" - ], - "summary": "分页查询节假日 | [itsm.duty-festival.view]", - "operationId": "searchUsingPOST_18", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyFestivalSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyFestivalAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.duty-festival.view" - ] - } - } - }, - "/itsm/api/v1/duty-festival/{festivalId}": { - "get": { - "tags": [ - "Duty Festival API" - ], - "summary": "节假日详情 | [itsm.duty-festival.view]", - "operationId": "infoUsingGET_15", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "festivalId", - "in": "path", - "description": "festivalId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyFestivalAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.duty-festival.view" - ] - } - }, - "put": { - "tags": [ - "Duty Festival API" - ], - "summary": "更新节假日 | [itsm.admin.all]", - "operationId": "updateUsingPUT_11", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "festivalId", - "in": "path", - "description": "festivalId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyFestivalReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyFestivalAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "delete": { - "tags": [ - "Duty Festival API" - ], - "summary": "删除节假日 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_13", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "festivalId", - "in": "path", - "description": "festivalId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/duty/record/export": { - "post": { - "tags": [ - "Duty Statistics API" - ], - "summary": "导出值班记录数据 | [itsm.duty.view]", - "operationId": "exportRecordUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyCountSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ByteArrayResource", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "exportRecord", - "$permissions": [ - "itsm.duty.view" - ] - } - } - }, - "/itsm/api/v1/duty/search/record": { - "post": { - "tags": [ - "Duty Statistics API" - ], - "summary": "分页查询值班记录 | [itsm.duty.view]", - "operationId": "statisticsRecordUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyCountSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyCountAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "statisticsRecord", - "$permissions": [ - "itsm.duty.view" - ] - } - } - }, - "/itsm/api/v1/duty/search/statistics": { - "post": { - "tags": [ - "Duty Statistics API" - ], - "summary": "分页查询值班统计 | [itsm.duty.view]", - "operationId": "statisticsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyCountSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyCountAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "statistics", - "$permissions": [ - "itsm.duty.view" - ] - } - } - }, - "/itsm/api/v1/duty/statistics/export": { - "post": { - "tags": [ - "Duty Statistics API" - ], - "summary": "导出值班统计数据 | [itsm.duty.view]", - "operationId": "exportStatisticsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyCountSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ByteArrayResource", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "exportStatistics", - "$permissions": [ - "itsm.duty.view" - ] - } - } - }, - "/itsm/api/v1/duty-work-date/": { - "post": { - "tags": [ - "Duty Work Date API" - ], - "summary": "新增工作时间 | [itsm.admin.all]", - "operationId": "createUsingPOST_18", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyWorkDateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyWorkDateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/duty-work-date/search": { - "post": { - "tags": [ - "Duty Work Date API" - ], - "summary": "分页查询工作时间 | [itsm.duty-work-date.view]", - "operationId": "searchUsingPOST_19", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyWorkDateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyWorkDateAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.duty-work-date.view" - ] - } - } - }, - "/itsm/api/v1/duty-work-date/{workDateId}": { - "get": { - "tags": [ - "Duty Work Date API" - ], - "summary": "工作时间详情 | [itsm.duty-work-date.view]", - "operationId": "infoUsingGET_16", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "workDateId", - "in": "path", - "description": "workDateId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyWorkDateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.duty-work-date.view" - ] - } - }, - "put": { - "tags": [ - "Duty Work Date API" - ], - "summary": "更新工作时间 | [itsm.admin.all]", - "operationId": "updateUsingPUT_12", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "workDateId", - "in": "path", - "description": "workDateId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyWorkDateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyWorkDateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "delete": { - "tags": [ - "Duty Work Date API" - ], - "summary": "删除工作时间 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_14", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "workDateId", - "in": "path", - "description": "workDateId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/duty-work-location/": { - "post": { - "tags": [ - "Duty Work Location API" - ], - "summary": "新增工作地点 | [itsm.admin.all]", - "operationId": "createUsingPOST_19", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyWorkLocationReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyWorkLocationAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/duty-work-location/search": { - "post": { - "tags": [ - "Duty Work Location API" - ], - "summary": "分页查询工作地点 | [itsm.duty-work-location.view]", - "operationId": "searchUsingPOST_20", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyWorkLocationSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DutyWorkLocationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.duty-work-location.view" - ] - } - } - }, - "/itsm/api/v1/duty-work-location/{dutyWorkLocationId}": { - "get": { - "tags": [ - "Duty Work Location API" - ], - "summary": "工作地点详情 | [itsm.duty-work-location.view]", - "operationId": "infoUsingGET_17", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyWorkLocationId", - "in": "path", - "description": "dutyWorkLocationId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyWorkLocationAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.duty-work-location.view" - ] - } - }, - "put": { - "tags": [ - "Duty Work Location API" - ], - "summary": "更新工作地点 | [itsm.admin.all]", - "operationId": "updateUsingPUT_13", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyWorkLocationId", - "in": "path", - "description": "dutyWorkLocationId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DutyWorkLocationReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«DutyWorkLocationAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "delete": { - "tags": [ - "Duty Work Location API" - ], - "summary": "删除工作地点 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_15", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dutyWorkLocationId", - "in": "path", - "description": "dutyWorkLocationId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email-entry/cf-check/{urlToken}": { - "get": { - "tags": [ - "Email Entry API" - ], - "summary": "[NO SECURE] Pre-Check the user permission for User Change feedback", - "operationId": "preCheckForChangeFeedbackUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urlToken", - "in": "path", - "description": "urlToken", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "preCheckForChangeFeedback", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/email-entry/cf/{urlToken}": { - "post": { - "tags": [ - "Email Entry API" - ], - "summary": "[NO SECURE] Change feedback", - "operationId": "changeFeedbackUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urlToken", - "in": "path", - "description": "urlToken", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCoordinationFeedbackReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangePlanAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "changeFeedback", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/email-entry/cra-check/{urlToken}": { - "get": { - "tags": [ - "Email Entry API" - ], - "summary": "[NO SECURE] Pre-check the user permission for Change Request Approval", - "operationId": "preCheckForChangeRequestApprovalUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urlToken", - "in": "path", - "description": "urlToken", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "preCheckForChangeRequestApproval", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/email-entry/cra/{urlToken}": { - "post": { - "tags": [ - "Email Entry API" - ], - "summary": "[NO SECURE] Change Request Approval for email user", - "operationId": "changeRequestApprovalUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urlToken", - "in": "path", - "description": "urlToken", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeAprovalReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangePlanAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "changeRequestApproval", - "$no_secure": "true" - } - } - }, - "/itsm/api/v2/email-entry/cf-check/{urlToken}": { - "get": { - "tags": [ - "Change Email Entry API" - ], - "summary": "[NO SECURE] Pre-Check the user permission for User Change feedback", - "operationId": "preCheckForChangeFeedbackUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urlToken", - "in": "path", - "description": "urlToken", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "preCheckForChangeFeedback", - "$no_secure": "true" - } - } - }, - "/itsm/api/v2/email-entry/cf/{urlToken}": { - "post": { - "tags": [ - "Change Email Entry API" - ], - "summary": "[NO SECURE] Change feedback", - "operationId": "changeFeedbackUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urlToken", - "in": "path", - "description": "urlToken", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeCoordinationFeedbackReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangePlanAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "changeFeedback", - "$no_secure": "true" - } - } - }, - "/itsm/api/v2/email-entry/cra-check/{urlToken}": { - "get": { - "tags": [ - "Change Email Entry API" - ], - "summary": "[NO SECURE] Pre-check the user permission for Change Request Approval", - "operationId": "preCheckForChangeRequestApprovalUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urlToken", - "in": "path", - "description": "urlToken", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "preCheckForChangeRequestApproval", - "$no_secure": "true" - } - } - }, - "/itsm/api/v2/email-entry/cra/{urlToken}": { - "post": { - "tags": [ - "Change Email Entry API" - ], - "summary": "[NO SECURE] Change Request Approval for email user", - "operationId": "changeRequestApprovalUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urlToken", - "in": "path", - "description": "urlToken", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeAprovalReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangePlanAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "changeRequestApproval", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/email/parse/config/check": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "check邮件解析配置 | [itsm.admin.all]", - "operationId": "checkUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseConfigAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "check", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/config/get": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "获取邮件解析配置 | [itsm.admin.all]", - "operationId": "configGetUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseConfigReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«EmailParseConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "configGet", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/config/logs/{id}": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "邮件解析配置-更新log | [itsm.admin.all]", - "operationId": "listLogsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SysUserLogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listLogs", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/config/submit": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "新建邮件解析配置 | [itsm.admin.all]", - "operationId": "configSubmitUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseConfigAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "configSubmit", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/config/update": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "更新邮件解析配置 | [itsm.admin.all]", - "operationId": "configUpdateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseConfigAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "configUpdate", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/filter/get": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "获取邮件解析配置 | [itsm.admin.all]", - "operationId": "filterGetUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseFilterReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«EmailParseFilterAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "filterGet", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/filter/submit": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "新建邮件解析配置 | [itsm.admin.all]", - "operationId": "filterSubmitUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseFilterAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "filterSubmit", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/filter/update": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "更新邮件解析配置 | [itsm.admin.all]", - "operationId": "filterUpdateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseFilterAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "filterUpdate", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/history/get": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "获取邮件开单历史 | [itsm.admin.all]", - "operationId": "historyGetUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseHistoryReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«EmailParseHistoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "historyGet", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/keyword/check": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "关键词检查重复 | [itsm.admin.all]", - "operationId": "keywordCheckUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseKeywordAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«EmailParseKeywordAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "keywordCheck", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/keyword/get": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "获取邮件解析关键字配置 | [itsm.admin.all]", - "operationId": "keywordGetUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseKeywordReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«EmailParseKeywordBizAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "keywordGet", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/email/parse/keyword/update": { - "post": { - "tags": [ - "Email Parse API" - ], - "summary": "更新邮件解析关键字配置 | [itsm.admin.all]", - "operationId": "keywordUpdateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailParseKeywordAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "keywordUpdate", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/gv-project/search": { - "post": { - "tags": [ - "Governance Project Api" - ], - "summary": "查询项目信息 | [itsm.incident.view]", - "operationId": "searchUsingPOST_21", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/PageResponse«ProjectSimpleInfoApiVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/gv/product": { - "get": { - "tags": [ - "Product" - ], - "summary": "查询产品列表 | [itsm.serviceCatalog.view]", - "operationId": "listUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ProductVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/inc/file/{id}": { - "get": { - "tags": [ - "Incident Attachment API" - ], - "summary": "Download file api | [itsm.file.view]", - "operationId": "downloadFileUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFile", - "$permissions": [ - "itsm.file.view" - ] - } - }, - "delete": { - "tags": [ - "Incident Attachment API" - ], - "summary": "Delete File Api | [itsm.file.edit]", - "operationId": "deleteUsingDELETE_16", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/api/v1/inc/file/{type}": { - "post": { - "tags": [ - "Incident Attachment API" - ], - "summary": "Upload file api | [itsm.file.edit]", - "operationId": "uploadFileUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "IMAGE", - "VIDEO" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAttachmentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "uploadFile", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/api/v1/incident-ci/ci-relation/search/{incId}/{ciType}/": { - "post": { - "tags": [ - "Incident Ci Api" - ], - "summary": "查询Ci关联 | [itsm.incident.view]", - "operationId": "searchCiRelationUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "ciType", - "in": "path", - "description": "ciType", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentCiRelationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchCiRelation", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident-ci/ci-replenish/{incId}": { - "get": { - "tags": [ - "Incident Ci Api" - ], - "summary": "获取CI补充 | [itsm.incident.view]", - "operationId": "searchCiReplenishUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchCiReplenish", - "$permissions": [ - "itsm.incident.view" - ] - } - }, - "post": { - "tags": [ - "Incident Ci Api" - ], - "summary": "新增CI补充 | [itsm.incident.edit]", - "operationId": "createCiReplenishUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCiReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createCiReplenish", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident-ci/ci/{incId}": { - "post": { - "tags": [ - "Incident Ci Api" - ], - "summary": "新增CI | [itsm.incident.edit]", - "operationId": "createCiUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCiReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createCi", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident-ci/ci/{incId}/{ciId}": { - "delete": { - "tags": [ - "Incident Ci Api" - ], - "summary": "删除CI | [itsm.incident.edit]", - "operationId": "deleteCiUsingDELETE_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "ciId", - "in": "path", - "description": "ciId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteCi", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident-ci/cis/{incId}": { - "post": { - "tags": [ - "Incident Ci Api" - ], - "summary": "查询CI | [itsm.incident.view]", - "operationId": "searchCiUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentCiSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchCi", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident-ci/list-relations-type/{incId}": { - "get": { - "tags": [ - "Incident Ci Api" - ], - "summary": "CI关联CI 类型 | [itsm.incident.view]", - "operationId": "listCiRelationTypeUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«int»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiRelationType", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident-ci/relation/{incId}": { - "post": { - "tags": [ - "Incident Ci Api" - ], - "summary": "新增CI关联 | [itsm.incident.edit]", - "operationId": "createCiRelationUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCiRelationReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentCiRelationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createCiRelation", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident-ci/remove-ci/{incId}": { - "post": { - "tags": [ - "Incident Ci Api" - ], - "summary": "删除CI | [itsm.incident.edit]", - "operationId": "deleteCiUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteCi", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident-ci/remove-relation/{incId}": { - "post": { - "tags": [ - "Incident Ci Api" - ], - "summary": "删除CI关联 | [itsm.incident.edit]", - "operationId": "deleteCiRelationUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteCiRelation", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident-comment/": { - "post": { - "tags": [ - "Incident Comment API" - ], - "summary": "添加评论 | [itsm.comment.edit]", - "operationId": "createUsingPOST_20", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "notifyUsers", - "in": "query", - "description": "notifyUsers", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "isPortal", - "in": "query", - "description": "isPortal", - "required": true, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentCommentCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentCommentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.comment.edit" - ] - } - } - }, - "/itsm/api/v1/incident-comment/search/{incidentIdOrNo}": { - "get": { - "tags": [ - "Incident Comment API" - ], - "summary": "查询评论 | [itsm.comment.view]", - "operationId": "searchUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentIdOrNo", - "in": "path", - "description": "incidentIdOrNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentCommentActivityAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.comment.view" - ] - } - } - }, - "/itsm/api/v1/incident/activity": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "查询故障处理日志 | [itsm.activity.view]", - "operationId": "activityUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentActivitySearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentActivityAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "activity", - "$permissions": [ - "itsm.activity.view" - ] - } - } - }, - "/itsm/api/v1/incident/admin": { - "get": { - "tags": [ - "Incident API" - ], - "summary": "admin permission api | [itsm.admin.all]", - "operationId": "adminApiUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«object»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "adminApi", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/incident/assignee-group-check/{incidentNo}": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "认领校验是否在多个业务类型对应的组中且未设置偏好 | [itsm.incident.view]", - "operationId": "assigneeGroupCheckUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "assigneeGroupCheck", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/batch-assign": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "认领 | [itsm.incident.edit]", - "operationId": "batchAssignUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentBatchAssignForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchAssign", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident/check-cancel/{incidentNo}": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "检查是否可以取消单据 | [itsm.serviceTicket.view]", - "operationId": "checkCancelUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "checkCancel", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/incident/copy/{incidentNo}": { - "get": { - "tags": [ - "Incident API" - ], - "summary": "portal-copy | [itsm.incident.view]", - "operationId": "copyUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "copy", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/data-search/{type}": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "故障管理后台-web 根据类型分页查询 | [itsm.incident.view]", - "operationId": "dataSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - { - "name": "ticketType", - "in": "query", - "description": "ticketType", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "dataSearch", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/delete": { - "delete": { - "tags": [ - "Incident API" - ], - "summary": "按条件删除单据 | [itsm.admin.all]", - "operationId": "deleteByFormUsingDELETE_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteByForm", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/incident/dmn/priority/{urgency}/{impact}": { - "get": { - "tags": [ - "Incident API" - ], - "summary": "计算优先级 | [itsm.incident.view]", - "operationId": "getPriorityFromDMNUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urgency", - "in": "path", - "description": "urgency", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - { - "name": "impact", - "in": "path", - "description": "impact", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getPriorityFromDMN", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/draft": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "保存草稿 | [itsm.incident.edit]", - "operationId": "draftUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "draft", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident/exist/{incidentNo}": { - "get": { - "tags": [ - "Incident API" - ], - "summary": "查看单号是否存在 | [itsm.incident.view]", - "operationId": "existIncUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "existInc", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/export/ticket/{type}": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "导出数据 | [itsm.incident.view]", - "operationId": "exportDataFileUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - { - "name": "ticketType", - "in": "query", - "description": "ticketType", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "exportDataFile", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/filed-auth/{idOrNo}": { - "get": { - "tags": [ - "Incident API" - ], - "summary": "查询单据字段得编辑权限 | [itsm.incident.view]", - "operationId": "listFiledAuthInfoUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "idOrNo", - "in": "path", - "description": "idOrNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "isView", - "in": "query", - "description": "isView", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«FiledAuthAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listFiledAuthInfo", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/gdy/{incidentNo}/close": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "关闭-广电云 | [itsm.incident.close]", - "operationId": "closeForGdyUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "closeForGdy", - "$permissions": [ - "itsm.incident.close" - ] - } - } - }, - "/itsm/api/v1/incident/hubble/resource-type": { - "get": { - "tags": [ - "Incident API" - ], - "summary": "查询hubble的资源类型 | [itsm.incident.view]", - "operationId": "searchResourceTypeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«HubbleResourceType»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchResourceType", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/incident-no": { - "get": { - "tags": [ - "Incident API" - ], - "summary": "生成故障单号 | [itsm.incident.view]", - "operationId": "generateIncidentNoUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "generateIncidentNo", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/incident-no/search": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "故障单号查询 | [itsm.incident.view]", - "operationId": "searchIncNoUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentNoVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchIncNo", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/incident-no/wok": { - "get": { - "tags": [ - "Incident API" - ], - "summary": "生成任务工单单号 | [itsm.incident.view]", - "operationId": "generateIncidentNoWKUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "generateIncidentNoWK", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/list": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "按条件搜索单据 | [itsm.incident.view]", - "operationId": "listUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/my-tickets/{type}": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "我的单据-根据类型分页查询 | [itsm.incident.view]", - "operationId": "searchMyTicketsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMyTickets", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/person-submitter/search/{type}": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "人员提单信息查询 | [itsm.incident.view]", - "operationId": "personSubmitterSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentNoVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "personSubmitterSearch", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/priority/statistics": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "待处理、处理中、已处理&优先级单据数量统计 | [itsm.incident.view]", - "operationId": "prioritySumUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentPrioritySumAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "prioritySum", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/priority/{urgency}/{impact}": { - "get": { - "tags": [ - "Incident API" - ], - "summary": "计算优先级 | [itsm.incident.view]", - "operationId": "priorityUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urgency", - "in": "path", - "description": "urgency", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - { - "name": "impact", - "in": "path", - "description": "impact", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "priority", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/submit": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "创建故障 | [itsm.incident.add]", - "operationId": "submitUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketType", - "in": "query", - "description": "ticketType", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "submit", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/api/v1/incident/task-no/search": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "任务单号查询 | [itsm.incident.view]", - "operationId": "searchTaskNoUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentNoVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchTaskNo", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/task/create": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "服务任务创建 | [itsm.incident.add]", - "operationId": "taskCreateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«object»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "taskCreate", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}": { - "get": { - "tags": [ - "Incident API" - ], - "summary": "查看故障详情 | [itsm.incident.view]", - "operationId": "infoUsingGET_18", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/ali": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "转到阿里云 | [itsm.incident.edit]", - "operationId": "transferToAliUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "transferToAli", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/cancel": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "取消 | [itsm.incident.cancel]", - "operationId": "cancelUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentCancelFrom", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "cancel", - "$permissions": [ - "itsm.incident.cancel" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/close": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "关闭 | [itsm.incident.close]", - "operationId": "closeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "close", - "$permissions": [ - "itsm.incident.close" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/dispatch": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "指派单据 | [itsm.incident.dispatch]", - "operationId": "dispatchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "dispatch", - "$permissions": [ - "itsm.incident.dispatch" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/handle": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "处理 | [itsm.incident.edit]", - "operationId": "handleUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "handle", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/on-hold": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "暂停 | [itsm.incident.edit]", - "operationId": "onHoldUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "onHold", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/re-handle": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "重新处理 | [itsm.incident.edit]", - "operationId": "reHandleUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "reHandle", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/resolve": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "解决 | [itsm.incident.edit]", - "operationId": "resolveUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "resolve", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/send-back": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "退回 | [itsm.incident.transfer]", - "operationId": "sendBackUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentSendBackReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "sendBack", - "$permissions": [ - "itsm.incident.transfer" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/switch": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "转接 | [itsm.incident.transfer]", - "operationId": "switchIncidentUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentSwitchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "switchIncident", - "$permissions": [ - "itsm.incident.transfer" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/transfer": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "转单 | [itsm.incident.transfer]", - "operationId": "transferUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentTransReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "transfer", - "$permissions": [ - "itsm.incident.transfer" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/upgrade": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "升级 | [itsm.incident.upgrade]", - "operationId": "upgradeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentTransReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "upgrade", - "$permissions": [ - "itsm.incident.upgrade" - ] - } - } - }, - "/itsm/api/v1/incident/{incidentNo}/user-cancel": { - "post": { - "tags": [ - "Incident API" - ], - "summary": "portal用户取消 | [itsm.incident.cancel]", - "operationId": "userCancelUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "userCancel", - "$permissions": [ - "itsm.incident.cancel" - ] - } - } - }, - "/itsm/api/v1/incident-favourite/": { - "post": { - "tags": [ - "Incident Favourite API" - ], - "summary": "add collection | [itsm.incident.add]", - "operationId": "favouriteUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentId", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentFavouriteAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "favourite", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/api/v1/incident-favourite/{id}": { - "delete": { - "tags": [ - "Incident Favourite API" - ], - "summary": "delete collection | [itsm.incident.cancel]", - "operationId": "cannelUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "cannel", - "$permissions": [ - "itsm.incident.cancel" - ] - } - } - }, - "/itsm/api/v1/incident-knowledge/insertOrUpdateTicket": { - "post": { - "tags": [ - "Incident Knowledge API" - ], - "summary": "提交更新知识单据关联 | [itsm.incident.add]", - "operationId": "insertOrUpdateTickteUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeTicketReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmKnowledgeTicketAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "insertOrUpdateTickte", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/api/v1/incident-knowledge/knowledge-ticket/batch-insert": { - "post": { - "tags": [ - "Incident Knowledge API" - ], - "summary": "create knowledge-ticket list | [itsm.incident.add]", - "operationId": "insertOrUpdateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeTicketReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/Response«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "insertOrUpdate", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/api/v1/incident-knowledge/knowledge-ticket/delete": { - "post": { - "tags": [ - "Incident Knowledge API" - ], - "summary": "delete knowledge-ticket | [itsm.incident.add]", - "operationId": "deleteUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeTicketReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/Response«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/api/v1/incident-knowledge/knowledge-ticket/list": { - "post": { - "tags": [ - "Incident Knowledge API" - ], - "summary": "query knowledge-ticket list | [itsm.incident.view]", - "operationId": "queryKnowledgeTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeTicketReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/Response«PageResult«KmKnowledgeTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "queryKnowledgeTicket", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/itpb/incident/{relateSys}": { - "post": { - "tags": [ - "Pb Incident API" - ], - "summary": "search | [itsm.problem.view]", - "operationId": "searchUsingPOST_22", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "relateSys", - "in": "path", - "description": "relateSys", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "ITPB", - "KNOWLEDGE", - "TASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentEntryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/incident-relate-ticket/search": { - "post": { - "tags": [ - "Incident relate ticket API" - ], - "summary": "查询关联单据 | [itsm.incident.edit]", - "operationId": "searchUsingPOST_23", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentRelateTicketSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentRelateTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident-relate-ticket/{incId}": { - "post": { - "tags": [ - "Incident relate ticket API" - ], - "summary": "创建票据关联 | [itsm.incident.edit]", - "operationId": "createUsingPOST_21", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentRelateTicketReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentRelateTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.incident.edit" - ] - } - }, - "delete": { - "tags": [ - "Incident relate ticket API" - ], - "summary": "删除关联单据 | [itsm.incident.edit]", - "operationId": "deleteUsingDELETE_17", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incId", - "in": "path", - "description": "incId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentRelateTicketSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentRelateTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/api/v1/incident-report": { - "post": { - "tags": [ - "Incident Report API" - ], - "summary": "report | [itsm.incident.view]", - "operationId": "reportUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentReportSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentReportAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "report", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident-report/overdue-time": { - "post": { - "tags": [ - "Incident Report API" - ], - "summary": "overdueTimeReport | [itsm.incident.view]", - "operationId": "overdueTimeReportUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentReportSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentSlaAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "overdueTimeReport", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident-report/trend/{dateEnum}": { - "post": { - "tags": [ - "Incident Report API" - ], - "summary": "trendReport | [itsm.incident.view]", - "operationId": "trendReportUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "dateEnum", - "in": "path", - "description": "dateEnum", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CURRENT_MONTH", - "CURRENT_WEEK", - "CURRENT_YEAR", - "TODAY" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentReportSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentReportAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "trendReport", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/api/v1/incident/subtask": { - "post": { - "tags": [ - "Incident Subtask API" - ], - "summary": "新增子任务 | [itsm.subtask.add]", - "operationId": "createUsingPOST_22", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SubtaskCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«SubTaskAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.subtask.add" - ] - } - } - }, - "/itsm/api/v1/incident/subtask/detail/{taskNo}": { - "get": { - "tags": [ - "Incident Subtask API" - ], - "summary": "查询任务详情 | [itsm.subtask.view]", - "operationId": "detailUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "taskNo", - "in": "path", - "description": "taskNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«SubTaskAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detail", - "$permissions": [ - "itsm.subtask.view" - ] - } - } - }, - "/itsm/api/v1/incident/subtask/my-pending": { - "post": { - "tags": [ - "Incident Subtask API" - ], - "summary": "查询我的待办-子任务 | [itsm.subtask.view]", - "operationId": "myPendingUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SubTaskAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myPending", - "$permissions": [ - "itsm.subtask.view" - ] - } - } - }, - "/itsm/api/v1/incident/subtask/my-task": { - "post": { - "tags": [ - "Incident Subtask API" - ], - "summary": "查询我创建的子任务 | [itsm.subtask.view]", - "operationId": "myTaskUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SubTaskAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myTask", - "$permissions": [ - "itsm.subtask.view" - ] - } - } - }, - "/itsm/api/v1/incident/subtask/search": { - "post": { - "tags": [ - "Incident Subtask API" - ], - "summary": "查询所有子任务 | [itsm.subtask.view]", - "operationId": "searchUsingPOST_24", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SubTaskAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.subtask.view" - ] - } - } - }, - "/itsm/api/v1/incident/subtask/search/{incNo}": { - "get": { - "tags": [ - "Incident Subtask API" - ], - "summary": "根据问题单据查询子任务 | [itsm.subtask.view]", - "operationId": "searchByIncNoUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incNo", - "in": "path", - "description": "incNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«SubTaskAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchByIncNo", - "$permissions": [ - "itsm.subtask.view" - ] - } - } - }, - "/itsm/api/v1/incident/subtask/{taskNo}": { - "put": { - "tags": [ - "Incident Subtask API" - ], - "summary": "更新子任务 | [itsm.subtask.edit]", - "operationId": "updateUsingPUT_14", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "taskNo", - "in": "path", - "description": "taskNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SubtaskUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«SubTaskAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.subtask.edit" - ] - } - } - }, - "/itsm/api/v1/initdata/": { - "post": { - "tags": [ - "Init data api" - ], - "summary": "初始化数据 | [itsm.optionConfig.view]", - "operationId": "initDataUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "initData", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/api/v1/interface/calllog/insert": { - "post": { - "tags": [ - "Interface Call Log API" - ], - "summary": "新增接口调用日志数据 | [itsm.interface-call-log.edit]", - "operationId": "insertUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/InterfaceCallLogCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«InterfaceCallLogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "insert", - "$permissions": [ - "itsm.interface-call-log.edit" - ] - } - } - }, - "/itsm/api/v1/interface/calllog/search": { - "post": { - "tags": [ - "Interface Call Log API" - ], - "summary": "按条件查询接口调用日志数据 | [itsm.interface-call-log.view]", - "operationId": "searchUsingPOST_25", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/InterfaceCallLogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«InterfaceCallLogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.interface-call-log.view" - ] - } - } - }, - "/itsm/api/v1/interface/calllog/update": { - "post": { - "tags": [ - "Interface Call Log API" - ], - "summary": "更新接口调用日志数据 | [itsm.interface-call-log.edit]", - "operationId": "updateUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/InterfaceCallLogUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«InterfaceCallLogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.interface-call-log.edit" - ] - } - } - }, - "/itsm/api/v1/itsm/file/public/{id}/{fileName}": { - "get": { - "tags": [ - "Itsm Attachment API" - ], - "summary": "[NO SECURE] Download file api 4 public", - "operationId": "downloadFileNoAuthUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "fileName", - "in": "path", - "description": "fileName", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFileNoAuth", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/itsm/file/{id}": { - "get": { - "tags": [ - "Itsm Attachment API" - ], - "summary": "Download file api | [itsm.file.view]", - "operationId": "downloadFileUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFile", - "$permissions": [ - "itsm.file.view" - ] - } - }, - "delete": { - "tags": [ - "Itsm Attachment API" - ], - "summary": "Delete File Api | [itsm.file.edit]", - "operationId": "deleteUsingDELETE_18", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/api/v1/itsm/file/{module}/{type}": { - "post": { - "tags": [ - "Itsm Attachment API" - ], - "summary": "Upload file api | [itsm.file.edit]", - "operationId": "uploadFileUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "module", - "in": "path", - "description": "module", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CHAT", - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "DUTY_CLASS_LOG", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK" - ] - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "IMAGE", - "VIDEO" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmFileAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "uploadFile", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/m/api/v1/itsm/file/public/{id}/{fileName}": { - "get": { - "tags": [ - "Itsm Attachment API" - ], - "summary": "[NO SECURE] Download file api 4 public", - "operationId": "downloadFileNoAuthUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "fileName", - "in": "path", - "description": "fileName", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFileNoAuth", - "$no_secure": "true" - } - } - }, - "/itsm/m/api/v1/itsm/file/{id}": { - "get": { - "tags": [ - "Itsm Attachment API" - ], - "summary": "Download file api | [itsm.file.view]", - "operationId": "downloadFileUsingGET_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFile", - "$permissions": [ - "itsm.file.view" - ] - } - }, - "delete": { - "tags": [ - "Itsm Attachment API" - ], - "summary": "Delete File Api | [itsm.file.edit]", - "operationId": "deleteUsingDELETE_19", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/m/api/v1/itsm/file/{module}/{type}": { - "post": { - "tags": [ - "Itsm Attachment API" - ], - "summary": "Upload file api | [itsm.file.edit]", - "operationId": "uploadFileUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "module", - "in": "path", - "description": "module", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CHAT", - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "DUTY_CLASS_LOG", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK" - ] - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "IMAGE", - "VIDEO" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmFileAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "uploadFile", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/api/v1/itsm-config/default-group/update/{bizCategoryGroupId}": { - "put": { - "tags": [ - "Itsm Config Api" - ], - "summary": "update default biz group | [itsm.config.edit]", - "operationId": "updateDefaultGroupUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "bizCategoryGroupId", - "in": "path", - "description": "bizCategoryGroupId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateDefaultGroup", - "$permissions": [ - "itsm.config.edit" - ] - } - } - }, - "/itsm/api/v1/itsm-config/init": { - "post": { - "tags": [ - "Itsm Config Api" - ], - "summary": "同步配置 | [itsm.config.edit]", - "operationId": "tennantDataUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "tennantData", - "$permissions": [ - "itsm.config.edit" - ] - } - } - }, - "/itsm/api/v1/itsm-config/insert": { - "post": { - "tags": [ - "Itsm Config Api" - ], - "summary": "新增配置 | [itsm.config.edit]", - "operationId": "insertUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmConfigCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmConfigAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "insert", - "$permissions": [ - "itsm.config.edit" - ] - } - } - }, - "/itsm/api/v1/itsm-config/search": { - "post": { - "tags": [ - "Itsm Config Api" - ], - "summary": "查询配置 | [itsm.config.view]", - "operationId": "searchUsingPOST_26", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmConfigSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ItsmConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.config.view" - ] - } - } - }, - "/itsm/api/v1/itsm-config/update": { - "put": { - "tags": [ - "Itsm Config Api" - ], - "summary": "更新配置 | [itsm.config.edit]", - "operationId": "updateUsingPUT_15", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmConfigUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmConfigAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.config.edit" - ] - } - } - }, - "/itsm/api/v1/itsm-config/{id}": { - "delete": { - "tags": [ - "Itsm Config Api" - ], - "summary": "删除配置 | [itsm.config.edit]", - "operationId": "deleteUsingDELETE_20", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.config.edit" - ] - } - } - }, - "/itsm/api/v1/license/check": { - "get": { - "tags": [ - "Itsm License api" - ], - "summary": "checkLicense | [itsm.ticket.view]", - "operationId": "checkLicenseUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResponseEntity", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "checkLicense", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/dynamic-form/": { - "post": { - "tags": [ - "Static Template API" - ], - "summary": "Add Static Template | [itsm.static-template.edit]", - "operationId": "createUsingPOST_23", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmStaticTemplateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmStaticTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.static-template.edit" - ] - } - } - }, - "/itsm/api/v1/dynamic-form/detail/{id}": { - "get": { - "tags": [ - "Static Template API" - ], - "summary": "Get Static Template Detail | [itsm.static-template.view]", - "operationId": "detailUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmStaticTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detail", - "$permissions": [ - "itsm.static-template.view" - ] - } - } - }, - "/itsm/api/v1/dynamic-form/publish": { - "post": { - "tags": [ - "Static Template API" - ], - "summary": "Publish Static Template | [itsm.static-template.edit]", - "operationId": "publishUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmStaticTemplateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmStaticTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "publish", - "$permissions": [ - "itsm.static-template.edit" - ] - } - } - }, - "/itsm/api/v1/dynamic-form/search": { - "post": { - "tags": [ - "Static Template API" - ], - "summary": "Search Static Template list | [itsm.static-template.view]", - "operationId": "searchUsingPOST_27", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmStaticTemplateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ItsmStaticTemplateAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.static-template.view" - ] - } - } - }, - "/itsm/api/v1/dynamic-form/{id}": { - "put": { - "tags": [ - "Static Template API" - ], - "summary": "Update Static Template | [itsm.static-template.edit]", - "operationId": "updateUsingPUT_16", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmStaticTemplateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmStaticTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.static-template.edit" - ] - } - }, - "delete": { - "tags": [ - "Static Template API" - ], - "summary": "Delete Static Template | [itsm.static-template.edit]", - "operationId": "deleteUsingDELETE_21", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.static-template.edit" - ] - } - } - }, - "/itsm/api/v1/static-template/": { - "post": { - "tags": [ - "Static Template API" - ], - "summary": "Add Static Template | [itsm.static-template.edit]", - "operationId": "createUsingPOST_24", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmStaticTemplateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmStaticTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.static-template.edit" - ] - } - } - }, - "/itsm/api/v1/static-template/detail/{id}": { - "get": { - "tags": [ - "Static Template API" - ], - "summary": "Get Static Template Detail | [itsm.static-template.view]", - "operationId": "detailUsingGET_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmStaticTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detail", - "$permissions": [ - "itsm.static-template.view" - ] - } - } - }, - "/itsm/api/v1/static-template/publish": { - "post": { - "tags": [ - "Static Template API" - ], - "summary": "Publish Static Template | [itsm.static-template.edit]", - "operationId": "publishUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmStaticTemplateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmStaticTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "publish", - "$permissions": [ - "itsm.static-template.edit" - ] - } - } - }, - "/itsm/api/v1/static-template/search": { - "post": { - "tags": [ - "Static Template API" - ], - "summary": "Search Static Template list | [itsm.static-template.view]", - "operationId": "searchUsingPOST_28", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmStaticTemplateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ItsmStaticTemplateAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.static-template.view" - ] - } - } - }, - "/itsm/api/v1/static-template/{id}": { - "put": { - "tags": [ - "Static Template API" - ], - "summary": "Update Static Template | [itsm.static-template.edit]", - "operationId": "updateUsingPUT_17", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ItsmStaticTemplateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ItsmStaticTemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.static-template.edit" - ] - } - }, - "delete": { - "tags": [ - "Static Template API" - ], - "summary": "Delete Static Template | [itsm.static-template.edit]", - "operationId": "deleteUsingDELETE_22", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.static-template.edit" - ] - } - } - }, - "/itsm/api/v1/subtask/my-todo/search": { - "post": { - "tags": [ - "Itsm Subtask API" - ], - "summary": "待我处理子任务分页查询 | [itsm.ticket.view]", - "operationId": "MyTodoPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SubTaskPageAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "MyTodoPage", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/subtask/my/search": { - "post": { - "tags": [ - "Itsm Subtask API" - ], - "summary": "我创建的子任务分页查询 | [itsm.ticket.view]", - "operationId": "mySubmitPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SubTaskPageAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "mySubmitPage", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/subtask/search": { - "post": { - "tags": [ - "Itsm Subtask API" - ], - "summary": "子任务分页查询 | [itsm.admin.all]", - "operationId": "AllPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SubTaskPageAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "AllPage", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km/file/{id}": { - "get": { - "tags": [ - "Attachment API" - ], - "summary": "Download file api | [itsm.file.view]", - "operationId": "downloadFileUsingGET_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFile", - "$permissions": [ - "itsm.file.view" - ] - } - }, - "delete": { - "tags": [ - "Attachment API" - ], - "summary": "Delete File Api | [itsm.file.edit]", - "operationId": "deleteUsingDELETE_23", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/api/v1/km/file/{type}": { - "post": { - "tags": [ - "Attachment API" - ], - "summary": "Upload file api | [itsm.file.edit]", - "operationId": "uploadFileUsingPOST_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "IMAGE", - "VIDEO" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TicketAttachmentVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "uploadFile", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/api/v1/km-catalog/delete-batch": { - "post": { - "tags": [ - "KmCatalog API" - ], - "summary": "删除目录 | [itsm.admin.all]", - "operationId": "deleteBatchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«int»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteBatch", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-catalog/import": { - "post": { - "tags": [ - "KmCatalog API" - ], - "summary": "目录管理-导入目录 | [itsm.admin.all]", - "operationId": "importByFileUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "importByFile", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-catalog/list": { - "get": { - "tags": [ - "KmCatalog API" - ], - "summary": "目录管理-目录列表查看 | [itsm.admin.all]", - "operationId": "listUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "post": { - "tags": [ - "KmCatalog API" - ], - "summary": "知识管理-portal查询类型知识 | [itsm.group.view]", - "operationId": "listPortalCategoryKnowledgeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«HashMap«string,List«HashMap«string,List«KmKnowledgePortalAO»»»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listPortalCategoryKnowledge", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-catalog/list/param": { - "post": { - "tags": [ - "KmCatalog API" - ], - "summary": "知识管理-portal查询类型知识-前端不支持直接传List时用此兼容接口 | [itsm.group.view]", - "operationId": "listPortalCategoryKnowledgeParamUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«HashMap«string,List«HashMap«string,List«KmKnowledgePortalAO»»»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listPortalCategoryKnowledgeParam", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-catalog/search": { - "post": { - "tags": [ - "KmCatalog API" - ], - "summary": "目录管理-分页搜索目录 | [itsm.admin.all]", - "operationId": "searchUsingPOST_29", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-catalog/search-by-catalog-type-rank/{type}": { - "get": { - "tags": [ - "KmCatalog API" - ], - "summary": "新知识库portal-主题搜索by业务or专业技能 | [itsm.catalog.view]", - "operationId": "searchByCatalogTypeRankUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "BUSINESS", - "COMMON", - "SKILL" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchByCatalogTypeRank", - "$permissions": [ - "itsm.catalog.view" - ] - } - } - }, - "/itsm/api/v1/km-catalog/search-by-catalog-type/{type}": { - "get": { - "tags": [ - "KmCatalog API" - ], - "summary": "知识库portal-主题搜索by业务or专业技能 | [itsm.catalog.view]", - "operationId": "searchByCatalogTypeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "BUSINESS", - "COMMON", - "SKILL" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchByCatalogType", - "$permissions": [ - "itsm.catalog.view" - ] - } - } - }, - "/itsm/api/v1/km-catalog/submit": { - "post": { - "tags": [ - "KmCatalog API" - ], - "summary": "新增目录 | [itsm.admin.all]", - "operationId": "createUsingPOST_25", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmCatalogCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-catalog/template": { - "get": { - "tags": [ - "KmCatalog API" - ], - "summary": "下载目录模板 | [itsm.admin.all]", - "operationId": "getTemplateUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getTemplate", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-catalog/topping/{type}": { - "post": { - "tags": [ - "KmCatalog API" - ], - "summary": "用户置顶目录 | [itsm.catalog.top]", - "operationId": "userTopCatalogUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "BUSINESS", - "COMMON", - "SKILL" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmUserSortCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "userTopCatalog", - "$permissions": [ - "itsm.catalog.top" - ] - } - } - }, - "/itsm/api/v1/km-catalog/tree-search": { - "post": { - "tags": [ - "KmCatalog API" - ], - "summary": "目录树按名称搜索 | [itsm.catalog.tree]", - "operationId": "treeSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TreeSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeSearch", - "$permissions": [ - "itsm.catalog.tree" - ] - } - } - }, - "/itsm/api/v1/km-catalog/tree-show": { - "post": { - "tags": [ - "KmCatalog API" - ], - "summary": "目录树查看 | [itsm.catalog.tree]", - "operationId": "treeShowUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TreeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeShow", - "$permissions": [ - "itsm.catalog.tree" - ] - } - } - }, - "/itsm/api/v1/km-catalog/{catalogId}": { - "get": { - "tags": [ - "KmCatalog API" - ], - "summary": "目录详情 | [itsm.admin.all]", - "operationId": "infoUsingGET_19", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-catalog/{catalogId}/update": { - "post": { - "tags": [ - "KmCatalog API" - ], - "summary": "修改目录 | [itsm.admin.all]", - "operationId": "updateUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmCatalogUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-catalog/{commentId}": { - "delete": { - "tags": [ - "KmComment API" - ], - "summary": "删除评论 | [itsm.comment.edit]", - "operationId": "deleteCommentUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "commentId", - "in": "path", - "description": "commentId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteComment", - "$permissions": [ - "itsm.comment.edit" - ] - } - } - }, - "/itsm/api/v1/km-catalog/{commentId}/reply": { - "post": { - "tags": [ - "KmComment API" - ], - "summary": "回复评论 | [itsm.comment.add]", - "operationId": "replyCommentUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "commentId", - "in": "path", - "description": "commentId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmCommentCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "replyComment", - "$permissions": [ - "itsm.comment.add" - ] - } - } - }, - "/itsm/api/v1/km-catalog/{knowledgeId}/comment": { - "post": { - "tags": [ - "KmComment API" - ], - "summary": "添加评论 | [itsm.comment.add]", - "operationId": "addCommentUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "knowledgeId", - "in": "path", - "description": "knowledgeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmCommentCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addComment", - "$permissions": [ - "itsm.comment.add" - ] - } - } - }, - "/itsm/api/v1/km-catalog/{knowledgeId}/search": { - "post": { - "tags": [ - "KmComment API" - ], - "summary": "分页查询评论 | [itsm.comment.view]", - "operationId": "searchUsingPOST_30", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "knowledgeId", - "in": "path", - "description": "knowledgeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmCommentSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmCommentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.comment.view" - ] - } - } - }, - "/itsm/api/v1/km-doc/relate/{sysType}": { - "post": { - "tags": [ - "KmDocRelate API" - ], - "summary": "根据模块查询关联工单 | [itsm.knowledge.view]", - "operationId": "searchUsingPOST_31", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "sysType", - "in": "path", - "description": "sysType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ITCM", - "ITIM", - "ITPB", - "ITSR", - "ITTS" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DocSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«List«string»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/{knowledge-id}/favourite": { - "post": { - "tags": [ - "KmFavourite API" - ], - "summary": "收藏/取消收藏知识 | [itsm.favourite.edit]", - "operationId": "addFavouriteOrCancelUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "knowledge-id", - "in": "path", - "description": "knowledge-id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addFavouriteOrCancel", - "$permissions": [ - "itsm.favourite.edit" - ] - } - } - }, - "/itsm/api/v1/km-approcal/approve-or-not": { - "post": { - "tags": [ - "KmApprocal API" - ], - "summary": "审批通过或驳回 | [itsm.approval.approve]", - "operationId": "approveOrNotUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeApprovalUpdate", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "approveOrNot", - "$permissions": [ - "itsm.approval.approve" - ] - } - } - }, - "/itsm/api/v1/km-approcal/my-approval-list": { - "post": { - "tags": [ - "KmApprocal API" - ], - "summary": "审批列表 | [itsm.approval.view]", - "operationId": "searchUsingPOST_32", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeApprovalReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmItsmMyApprovedAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.approval.view" - ] - } - } - }, - "/itsm/api/v1/km-approcal/{knowledge-id}/option": { - "get": { - "tags": [ - "KmApprocal API" - ], - "summary": "审批理由查询 | [itsm.approval.options]", - "operationId": "approveOptionUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "knowledge-id", - "in": "path", - "description": "knowledge-id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmApprovalAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "approveOption", - "$permissions": [ - "itsm.approval.options" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/select-by-ci": { - "post": { - "tags": [ - "KmKnowledgeCi API" - ], - "summary": "根据ci查询知识 | [itsm.knowledge.view]", - "operationId": "selectByCiUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeCiQueryReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmKnowledgeCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "selectByCi", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/{id}/cis": { - "post": { - "tags": [ - "KmKnowledgeCi API" - ], - "summary": "新增知识关联ci | [itsm.knowledge.view]", - "operationId": "createUsingPOST_26", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeCiListReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/{knowledge-id}/cis": { - "get": { - "tags": [ - "KmKnowledgeCi API" - ], - "summary": "查询知识关联ci | [itsm.knowledge.view]", - "operationId": "selectByKnowledgeIdUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "knowledge-id", - "in": "path", - "description": "knowledge-id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmKnowledgeCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "selectByKnowledgeId", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/click/save": { - "post": { - "tags": [ - "KmKnowledgeClick API" - ], - "summary": "新增点击记录 | [itsm.knowledge.view]", - "operationId": "saveUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeClickCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "save", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/batch-release": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "发布草稿状态的知识 | [itsm.group.view]", - "operationId": "releaseUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "release", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/bottom/statistics": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "知识列表底部统计 | [itsm.group.view]", - "operationId": "bottomStatisticsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«BottomStatisticsAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "bottomStatistics", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/check/{title}": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "校验标题是否重复 | [itsm.group.view]", - "operationId": "checkTitleUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "title", - "in": "path", - "description": "title", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "checkTitle", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/delete-batch": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "批量删除知识 | [itsm.group.view]", - "operationId": "deleteBatchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteBatch", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/feed-back/{knowledgeId}": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "知识反馈 | [itsm.portal.edit]", - "operationId": "feedBackUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "knowledgeId", - "in": "path", - "description": "knowledgeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "feedBack", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/import": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "知识管理-导入知识 | [itsm.knowledge.view]", - "operationId": "importByFileUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "EXCEL", - "TXT", - "WORD" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "array", - "description": "file", - "exampleSetFlag": true, - "items": { - "type": "string", - "format": "binary", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "importByFile", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/list": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "知识管理-查询知识 | [itsm.group.view]", - "operationId": "listUsingPOST_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmKnowledgePortalAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/list-by-ids": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "查询知识列表 | [itsm.knowledge.view]", - "operationId": "listByIdsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmKnowledgeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listByIds", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/list/detail": { - "get": { - "tags": [ - "KmKnowledge API" - ], - "summary": "知识管理-知识详情 | [itsm.group.view]", - "operationId": "listDetailUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "query", - "description": "id", - "required": true, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmKnowledgeVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listDetail", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/no/search": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "模糊查询单号 | [itsm.knowledge.view]", - "operationId": "KmNoSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "deprecated": true, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "KmNoSearch", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/other/list": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "其他模块在解决方案中查询知识 | [itsm.knowledge.view]", - "operationId": "listForOtherModuleUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeOtherSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmKnowledgePortalAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listForOtherModule", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/portal/all": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "知识库首页显示的热门搜索等领域和属性分类各几条 | [itsm.knowledge.view]", - "operationId": "portalAllUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«object»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "portalAll", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/repeat/search": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "重复查询 | [itsm.knowledge.view]", - "operationId": "searchRepeatUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmRepeatContentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchRepeat", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/submit": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "新增知识 | [itsm.group.view]", - "operationId": "createUsingPOST_27", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "callbackId", - "in": "query", - "description": "callbackId", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/template": { - "get": { - "tags": [ - "KmKnowledge API" - ], - "summary": "下载知识模板 | [itsm.knowledge.view]", - "operationId": "getTemplateUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getTemplate", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/withdraw/{id}": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "撤回提审的知识 | [itsm.knowledge.view]", - "operationId": "withdrawUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmKnowledgeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "withdraw", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/{id}/delete": { - "delete": { - "tags": [ - "KmKnowledge API" - ], - "summary": "删除知识 | [itsm.group.view]", - "operationId": "deleteUsingDELETE_24", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/{id}/detail": { - "get": { - "tags": [ - "KmKnowledge API" - ], - "summary": "portal知识详情 | [itsm.group.view]", - "operationId": "detailUsingGET_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmKnowledgeVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detail", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/{id}/update": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "修改知识或发布草稿 | [itsm.group.view]", - "operationId": "updateUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/{type}/import": { - "post": { - "tags": [ - "KmKnowledge API" - ], - "summary": "知识管理-导入知识 | [itsm.knowledge.view]", - "operationId": "importByFileUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "EXCEL", - "TXT", - "WORD" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "array", - "description": "file", - "exampleSetFlag": true, - "items": { - "type": "string", - "format": "binary", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "importByFile", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-graph/create": { - "post": { - "tags": [ - "KmKnowledge Graph API" - ], - "summary": "知识图谱-创建实体关系 | [itsm.admin.all]", - "operationId": "createUsingPOST_28", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeEntityRelateAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-graph/data/list": { - "post": { - "tags": [ - "KmKnowledge Graph API" - ], - "summary": "知识图谱-实体关系数据 | [itsm.group.view]", - "operationId": "dataListUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeEntityRelateDataSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmKnowledgeGraphEntityRelateDataVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "dataList", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-graph/data/logs/{id}": { - "post": { - "tags": [ - "KmKnowledge Graph API" - ], - "summary": "知识图谱-图谱数据更新log | [itsm.admin.all]", - "operationId": "listLogsUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SysUserLogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listLogs", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-graph/data/update/start": { - "post": { - "tags": [ - "KmKnowledge Graph API" - ], - "summary": "知识图谱-触发更新实体关系数据job | [itsm.admin.all]", - "operationId": "dataUpdateJobUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "dataUpdateJob", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-graph/data/update/{id}": { - "post": { - "tags": [ - "KmKnowledge Graph API" - ], - "summary": "知识图谱-手动更新实体关系数据 | [itsm.admin.all]", - "operationId": "dataUpdateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeEntityRelateDataAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "dataUpdate", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-graph/delete/{id}": { - "delete": { - "tags": [ - "KmKnowledge Graph API" - ], - "summary": "知识图谱-删除实体关系 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_25", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-graph/entity": { - "get": { - "tags": [ - "KmKnowledge Graph API" - ], - "summary": "知识图谱-实体可选项 | [itsm.group.view]", - "operationId": "entityUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmKnowledgeGraphEntityVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "entity", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-graph/list": { - "post": { - "tags": [ - "KmKnowledge Graph API" - ], - "summary": "知识图谱-实体关系列表 | [itsm.admin.all]", - "operationId": "listUsingPOST_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeEntityRelateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmKnowledgeGraphEntityRelateVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-graph/update/{id}": { - "post": { - "tags": [ - "KmKnowledge Graph API" - ], - "summary": "知识图谱-更新实体关系 | [itsm.admin.all]", - "operationId": "updateUsingPOST_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeEntityRelateAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/delete/{sourceType}": { - "delete": { - "tags": [ - "KmKnowledgeTag API" - ], - "summary": "删除标签通过类型 | [itsm.tag.edit]", - "operationId": "deleteBySourceTypeUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "sourceType", - "in": "path", - "description": "sourceType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "MANUAL_FILL", - "SYESREM_RECOMMENDACTIONS" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteBySourceType", - "$permissions": [ - "itsm.tag.edit" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/search-by-tag": { - "post": { - "tags": [ - "KmKnowledgeTag API" - ], - "summary": "根据标签搜索知识 | [itsm.knowledge.view]", - "operationId": "searchUsingPOST_33", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeTagSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmKnowledgeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/search-tags": { - "post": { - "tags": [ - "KmKnowledgeTag API" - ], - "summary": "根据标签名称模糊搜索标签列表 | [itsm.knowledge.view]", - "operationId": "searchTagsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeTagSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Set«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchTags", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/{id}/tags": { - "post": { - "tags": [ - "KmKnowledgeTag API" - ], - "summary": "新增知识标签 | [itsm.tag.edit]", - "operationId": "createUsingPOST_29", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeTagCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.tag.edit" - ] - } - } - }, - "/itsm/api/v1/km-knowledge/{knowledge-id}/tags": { - "get": { - "tags": [ - "KmKnowledgeTag API" - ], - "summary": "查询知识标签 | [itsm.tag.view]", - "operationId": "selectByKnowledgeIdUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "knowledge-id", - "in": "path", - "description": "knowledge-id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmKnowledgeTagAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "selectByKnowledgeId", - "$permissions": [ - "itsm.tag.view" - ] - } - } - }, - "/itsm/api/v1/km-ticket/batch-insert": { - "post": { - "tags": [ - "KmKnowledgeTicket API" - ], - "summary": "create knowledge-ticket list | [itsm.group.view]", - "operationId": "insertOrUpdateUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeTicketReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/Response«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "insertOrUpdate", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-ticket/delete": { - "post": { - "tags": [ - "KmKnowledgeTicket API" - ], - "summary": "delete knowledge-ticket | [itsm.group.view]", - "operationId": "deleteUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeTicketReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/Response«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-ticket/insertOrUpdateTicket": { - "post": { - "tags": [ - "KmKnowledgeTicket API" - ], - "summary": "提交更新知识单据关联 | [itsm.group.view]", - "operationId": "insertOrUpdateTickteUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeTicketReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmKnowledgeTicketAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "insertOrUpdateTickte", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-ticket/list": { - "post": { - "tags": [ - "KmKnowledgeTicket API" - ], - "summary": "query knowledge-ticket list | [itsm.group.view]", - "operationId": "queryKnowledgeTicketUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeTicketReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/Response«PageResult«KmKnowledgeTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "queryKnowledgeTicket", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-ticket/relateTicket/effective": { - "post": { - "tags": [ - "KmKnowledgeTicket API" - ], - "summary": "查询关联已发布的知识 | [itsm.group.view]", - "operationId": "findByEffectiveNoUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeTicketReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmKnowledgeTicketPortalAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findByEffectiveNo", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-ticket/relateTicket/{knowledgeId}": { - "post": { - "tags": [ - "KmKnowledgeTicket API" - ], - "summary": "查询只是关联的相关单据 | [itsm.group.view]", - "operationId": "relateTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "knowledgeId", - "in": "path", - "description": "knowledgeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmKnowledgeTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "relateTicket", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-ticket/relateTicketPage/{knowledgeId}": { - "post": { - "tags": [ - "KmKnowledgeTicket API" - ], - "summary": "查询只是关联的相关单据 | [itsm.group.view]", - "operationId": "relateTicketPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "knowledgeId", - "in": "path", - "description": "knowledgeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmKnowledgeTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "relateTicketPage", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-version/detail/{id}": { - "get": { - "tags": [ - "KmKnowledge version API" - ], - "summary": "knowledge version detail | [itsm.knowledge.view]", - "operationId": "detailUsingGET_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmKnowledgeVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detail", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-version/display/update": { - "put": { - "tags": [ - "KmKnowledge version API" - ], - "summary": "update knowledge version display | [itsm.admin.all]", - "operationId": "updateDisplayUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeVersionUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateDisplay", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-version/offline/{id}": { - "post": { - "tags": [ - "KmKnowledge version API" - ], - "summary": "下线知识版本) | [itsm.knowledge.view]", - "operationId": "offlineUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmKnowledgeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "offline", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-version/online/{id}": { - "post": { - "tags": [ - "KmKnowledge version API" - ], - "summary": "上线知识版本 | [itsm.knowledge.view]", - "operationId": "onlineUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmKnowledgeAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "online", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km-knowledge-version/search": { - "post": { - "tags": [ - "KmKnowledge version API" - ], - "summary": "search knowledge version data | [itsm.knowledge.view]", - "operationId": "searchUsingPOST_34", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KnowledgeVersionSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KnowledgeVersionAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/km/aia-recommend/itkm-analysis/keywords-rec": { - "get": { - "tags": [ - "Km4RecommendKnowledge API" - ], - "summary": "系统推荐关键词 | [itsm.group.view]", - "operationId": "queryKeywordsUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "kmtitle", - "in": "query", - "description": "kmtitle", - "required": true, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "queryKeywords", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km/aia-recommend/itkm-analysis/km-tags-rec": { - "get": { - "tags": [ - "Km4RecommendKnowledge API" - ], - "summary": "系统推荐标签 | [itsm.group.view]", - "operationId": "queryTagsUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "kmid", - "in": "query", - "description": "kmid", - "required": true, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "queryTags", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km/aia-recommend/sim-doc-rec": { - "post": { - "tags": [ - "Km4RecommendKnowledge API" - ], - "summary": "为其他系统提供的知识推荐接口 | [itsm.group.view]", - "operationId": "recommendKnowledgeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmRecommendTicketSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«KmRecommendAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "recommendKnowledge", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/km-config/search": { - "get": { - "tags": [ - "KmSearchConfig API" - ], - "summary": "查询知识配置 | [itsm.admin.all]", - "operationId": "searchUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«KmSearchConfigAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/km-config/update": { - "put": { - "tags": [ - "KmSearchConfig API" - ], - "summary": "更新知识查询配置 | [itsm.admin.all]", - "operationId": "updateUsingPUT_18", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmSearchConfigUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/group/user/domain-expert": { - "get": { - "tags": [ - "KM group API" - ], - "summary": "查询领域专家组的用户 | [itsm.group.view]", - "operationId": "findDomainExpertUserUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«UserSimpleDisplayApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findDomainExpertUser", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/group/user/itsm/admin": { - "get": { - "tags": [ - "KM group API" - ], - "summary": "查询管理员组的用户 | [itsm.group.view]", - "operationId": "findAdminUserUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«UserSimpleDisplayApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findAdminUser", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/assign-to-me": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "指派给我 | [itsm.group.view]", - "operationId": "assignToMeUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "assignToMe", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/create": { - "post": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "新增业务分类 | [itsm.admin.all]", - "operationId": "createUsingPOST_30", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BizCategoryCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/group": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "查询已经关联组织的用户组 | [itsm.admin.all]", - "operationId": "listGroupUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listGroup", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/group-tree": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "group树 | [itsm.admin.all]", - "operationId": "groupTreeUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationLevelGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "groupTree", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/group/{bizid}": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "通过业务类型id查询group | [itsm.problem.view]", - "operationId": "findByBizIdUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "bizid", - "in": "path", - "description": "bizid", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findByBizId", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/list": { - "post": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "列表查询 | [itsm.admin.all]", - "operationId": "listUsingPOST_6", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BizCateforySearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«BizCategoryListAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/my-departments": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "客户所属的组织 | [itsm.bizCategory.view]", - "operationId": "myDepartmentsUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«GovernanceDeptVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myDepartments", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/tree": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "业务树 | [itsm.bizCategory.view]", - "operationId": "treeUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "tree", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/tree-company": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "业务树-兼容truescale | [itsm.bizCategory.view]", - "operationId": "treeCompanyUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeCompany", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/tree-portal": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "业务树 | [itsm.bizCategory.view]", - "operationId": "treePortalUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treePortal", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/tree/{department}": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "业务树 | [itsm.bizCategory.view]", - "operationId": "treeSearchUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "department", - "in": "path", - "description": "department", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeSearch", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/update": { - "put": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "编辑业务分类 | [itsm.admin.all]", - "operationId": "updateUsingPUT_19", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BizCategoryUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/work-desk/list": { - "post": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "列表查询 | [itsm.bizCategory.view]", - "operationId": "workDeskListUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BizCateforySearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«BizCategoryListAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "workDeskList", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/work-desk/tree": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "业务树-工作台 | [itsm.bizCategory.view]", - "operationId": "treeForWorkDeskUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeForWorkDesk", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/{id}/delete": { - "delete": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "删除业务分类 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_26", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/{id}/delete-group": { - "delete": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "删除业务分类和组的关系 | [itsm.admin.all]", - "operationId": "deleteGroupUsingDELETE_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteGroup", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/biz-category/{id}/detail": { - "get": { - "tags": [ - "Mobile BizCategory" - ], - "summary": "业务分类详情 | [itsm.admin.all]", - "operationId": "detailUsingGET_6", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«BizCategoryAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detail", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/message/wework/receive": { - "get": { - "tags": [ - "Mobile IM Message API" - ], - "summary": "接受企微消息 | [itsm.bizCategory.view]", - "operationId": "receiveUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "msg_signature", - "in": "query", - "description": "msg_signature", - "required": true, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "timestamp", - "in": "query", - "description": "timestamp", - "required": true, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "nonce", - "in": "query", - "description": "nonce", - "required": true, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "echostr", - "in": "query", - "description": "echostr", - "required": true, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "receive", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/m/api/v1/message/wework/send": { - "post": { - "tags": [ - "Mobile IM Message API" - ], - "summary": "发送企微消息 | [itsm.incident.view]", - "operationId": "sendUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "send", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/inc/file/{id}": { - "get": { - "tags": [ - "Mobile Incident Attachment API" - ], - "summary": "Download file api | [itsm.file.view]", - "operationId": "downloadFileUsingGET_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFile", - "$permissions": [ - "itsm.file.view" - ] - } - }, - "delete": { - "tags": [ - "Mobile Incident Attachment API" - ], - "summary": "Delete File Api | [itsm.file.edit]", - "operationId": "deleteUsingDELETE_27", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/m/api/v1/inc/file/{type}": { - "post": { - "tags": [ - "Mobile Incident Attachment API" - ], - "summary": "Upload file api | [itsm.file.edit]", - "operationId": "uploadFileUsingPOST_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "IMAGE", - "VIDEO" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAttachmentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "uploadFile", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/m/api/v1/incident/activity": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "查询故障处理日志 | [itsm.activity.view]", - "operationId": "activityUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentActivitySearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentActivityAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "activity", - "$permissions": [ - "itsm.activity.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/admin": { - "get": { - "tags": [ - "Mobile Incident API" - ], - "summary": "admin permission api | [itsm.admin.all]", - "operationId": "adminApiUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«object»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "adminApi", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/incident/batch-assign": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "认领 | [itsm.incident.edit]", - "operationId": "batchAssignUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentBatchAssignForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchAssign", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/m/api/v1/incident/check-cancel/{incidentNo}": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "检查是否可以取消单据 | [itsm.serviceTicket.view]", - "operationId": "checkCancelUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "checkCancel", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/copy/{incidentNo}": { - "get": { - "tags": [ - "Mobile Incident API" - ], - "summary": "portal-copy | [itsm.incident.view]", - "operationId": "copyUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "copy", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/data-search/{type}": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "故障管理后台-web 根据类型分页查询 | [itsm.incident.view]", - "operationId": "dataSearchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - { - "name": "ticketType", - "in": "query", - "description": "ticketType", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "dataSearch", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/delete": { - "delete": { - "tags": [ - "Mobile Incident API" - ], - "summary": "按条件删除单据 | [itsm.admin.all]", - "operationId": "deleteByFormUsingDELETE_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteByForm", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/incident/draft": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "保存草稿 | [itsm.incident.edit]", - "operationId": "draftUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "draft", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/m/api/v1/incident/exist/{incidentNo}": { - "get": { - "tags": [ - "Mobile Incident API" - ], - "summary": "查看单号是否存在 | [itsm.incident.view]", - "operationId": "existIncUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "existInc", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/export/ticket/{type}": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "导出数据 | [itsm.incident.view]", - "operationId": "exportDataFileUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - { - "name": "ticketType", - "in": "query", - "description": "ticketType", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "exportDataFile", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/filed-auth/{idOrNo}": { - "get": { - "tags": [ - "Mobile Incident API" - ], - "summary": "查询单据字段得编辑权限 | [itsm.incident.view]", - "operationId": "listFiledAuthInfoUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "idOrNo", - "in": "path", - "description": "idOrNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "isView", - "in": "query", - "description": "isView", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«FiledAuthAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listFiledAuthInfo", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/gdy/{incidentNo}/close": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "关闭-广电云 | [itsm.incident.close]", - "operationId": "closeForGdyUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "closeForGdy", - "$permissions": [ - "itsm.incident.close" - ] - } - } - }, - "/itsm/m/api/v1/incident/incident-no": { - "get": { - "tags": [ - "Mobile Incident API" - ], - "summary": "生成故障单号 | [itsm.incident.view]", - "operationId": "generateIncidentNoUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "generateIncidentNo", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/incident-no/search": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "故障单号查询 | [itsm.incident.view]", - "operationId": "searchIncNoUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentNoVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchIncNo", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/incident-no/wok": { - "get": { - "tags": [ - "Mobile Incident API" - ], - "summary": "生成任务工单单号 | [itsm.incident.view]", - "operationId": "generateIncidentNoWKUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "generateIncidentNoWK", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/list": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "按条件搜索单据 | [itsm.incident.view]", - "operationId": "listUsingPOST_7", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/my-tickets/{type}": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "我的单据-根据类型分页查询 | [itsm.incident.view]", - "operationId": "searchMyTicketsUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMyTickets", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/person-submitter/search/{type}": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "人员提单信息查询 | [itsm.incident.view]", - "operationId": "personSubmitterSearchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«IncidentNoVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "personSubmitterSearch", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/priority/statistics": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "待处理、处理中、已处理&优先级单据数量统计 | [itsm.incident.view]", - "operationId": "prioritySumUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentPrioritySumAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "prioritySum", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/priority/{urgency}/{impact}": { - "get": { - "tags": [ - "Mobile Incident API" - ], - "summary": "计算优先级 | [itsm.incident.view]", - "operationId": "priorityUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "urgency", - "in": "path", - "description": "urgency", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - { - "name": "impact", - "in": "path", - "description": "impact", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "priority", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/submit": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "创建故障 | [itsm.incident.add]", - "operationId": "submitUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketType", - "in": "query", - "description": "ticketType", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "submit", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/m/api/v1/incident/task-no/search": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "任务单号查询 | [itsm.incident.view]", - "operationId": "searchTaskNoUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«IncidentNoVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchTaskNo", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/task/create": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "服务任务创建 | [itsm.incident.add]", - "operationId": "taskCreateUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«object»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "taskCreate", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/m/api/v1/incident/tree-portal": { - "get": { - "tags": [ - "Mobile Incident API" - ], - "summary": "业务树 | [itsm.bizCategory.view]", - "operationId": "treePortalUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BizCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treePortal", - "$permissions": [ - "itsm.bizCategory.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}": { - "get": { - "tags": [ - "Mobile Incident API" - ], - "summary": "查看故障详情 | [itsm.incident.view]", - "operationId": "infoUsingGET_20", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.incident.view" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/ali": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "转到阿里云 | [itsm.incident.edit]", - "operationId": "transferToAliUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "transferToAli", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/cancel": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "取消 | [itsm.incident.cancel]", - "operationId": "cancelUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentCancelFrom", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "cancel", - "$permissions": [ - "itsm.incident.cancel" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/close": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "关闭 | [itsm.incident.close]", - "operationId": "closeUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "close", - "$permissions": [ - "itsm.incident.close" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/dispatch": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "指派单据 | [itsm.incident.dispatch]", - "operationId": "dispatchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "dispatch", - "$permissions": [ - "itsm.incident.dispatch" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/handle": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "处理 | [itsm.incident.edit]", - "operationId": "handleUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "handle", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/on-hold": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "暂停 | [itsm.incident.edit]", - "operationId": "onHoldUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "onHold", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/re-handle": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "重新处理 | [itsm.incident.edit]", - "operationId": "reHandleUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "reHandle", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/resolve": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "解决 | [itsm.incident.edit]", - "operationId": "resolveUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "resolve", - "$permissions": [ - "itsm.incident.edit" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/transfer": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "转单 | [itsm.incident.transfer]", - "operationId": "transferUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "transfer", - "$permissions": [ - "itsm.incident.transfer" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/upgrade": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "升级 | [itsm.incident.upgrade]", - "operationId": "upgradeUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "upgrade", - "$permissions": [ - "itsm.incident.upgrade" - ] - } - } - }, - "/itsm/m/api/v1/incident/{incidentNo}/user-cancel": { - "post": { - "tags": [ - "Mobile Incident API" - ], - "summary": "portal用户取消 | [itsm.incident.cancel]", - "operationId": "userCancelUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "incidentNo", - "in": "path", - "description": "incidentNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentProcessReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "userCancel", - "$permissions": [ - "itsm.incident.cancel" - ] - } - } - }, - "/itsm/m/api/v1/opton-config/create": { - "post": { - "tags": [ - "Mobile OptionConfig" - ], - "summary": "新增配置 | [itsm.optionConfig.view]", - "operationId": "createUsingPOST_31", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OptionConfigRootCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/m/api/v1/opton-config/delete/{id}": { - "delete": { - "tags": [ - "Mobile OptionConfig" - ], - "summary": "删除配置 | [itsm.optionConfig.view]", - "operationId": "deleteUsingDELETE_28", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/m/api/v1/opton-config/detial/{id}": { - "get": { - "tags": [ - "Mobile OptionConfig" - ], - "summary": "详情 | [itsm.optionConfig.view]", - "operationId": "detailDataUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«OptionConfigAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detailData", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/m/api/v1/opton-config/search/right": { - "post": { - "tags": [ - "Mobile OptionConfig" - ], - "summary": "查询树右侧数据 | [itsm.optionConfig.view]", - "operationId": "rightDataListSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OntionConfigRootSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«OptionConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "rightDataListSearch", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/m/api/v1/opton-config/search/root": { - "post": { - "tags": [ - "Mobile OptionConfig" - ], - "summary": "查询根数据源 | [itsm.optionConfig.view]", - "operationId": "rootDataListSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OntionConfigRootSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«OptionConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "rootDataListSearch", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/m/api/v1/opton-config/tree/root/{businessType}": { - "get": { - "tags": [ - "Mobile OptionConfig" - ], - "summary": "带根节点的配置树 | [itsm.optionConfig.view]", - "operationId": "treeWithRootUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "businessType", - "in": "path", - "description": "businessType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OptionConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeWithRoot", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/m/api/v1/opton-config/tree/{businessType}": { - "get": { - "tags": [ - "Mobile OptionConfig" - ], - "summary": "配置树 | [itsm.optionConfig.view]", - "operationId": "treeUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "businessType", - "in": "path", - "description": "businessType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OptionConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "tree", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/m/api/v1/opton-config/update": { - "post": { - "tags": [ - "Mobile OptionConfig" - ], - "summary": "更新配置 | [itsm.optionConfig.view]", - "operationId": "updateUsingPOST_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OptionConfigRootUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/common-link": { - "post": { - "tags": [ - "Mobile Portal Config API" - ], - "summary": "新增常用链接 | [itsm.portal.edit]", - "operationId": "createOrUpdateLinkUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CommonCreateReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«CommonLinkAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createOrUpdateLink", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/m/api/v1/portal/config": { - "post": { - "tags": [ - "Mobile Portal Config API" - ], - "summary": "新增配置项 | [itsm.portal.edit]", - "operationId": "createOrUpdateConfigUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ConfigCreateReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createOrUpdateConfig", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/m/api/v1/portal/detail/new/notice/{isNew}": { - "get": { - "tags": [ - "Mobile Portal Config API" - ], - "summary": "查看公告最新详情 | [itsm.portal.view]", - "operationId": "portalNoticeDetailByNewUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "isNew", - "in": "path", - "description": "isNew", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«NoticeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "portalNoticeDetailByNew", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/detail/new/portal/{isNew}": { - "get": { - "tags": [ - "Mobile Portal Config API" - ], - "summary": "查看首页最新配置详情 | [itsm.portal.view]", - "operationId": "portalDetailNewUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "isNew", - "in": "path", - "description": "isNew", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PortalAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "portalDetailNew", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/detail/notice/{status}": { - "get": { - "tags": [ - "Mobile Portal Config API" - ], - "summary": "查看公告详情 | [itsm.portal.view]", - "operationId": "portalNoticeDetailUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "status", - "in": "path", - "description": "status", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«NoticeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "portalNoticeDetail", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/detail/portal/{status}": { - "get": { - "tags": [ - "Mobile Portal Config API" - ], - "summary": "查看首页配置详情 | [itsm.portal.view]", - "operationId": "portalDetailUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "status", - "in": "path", - "description": "status", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PortalAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "portalDetail", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/notice": { - "post": { - "tags": [ - "Mobile Portal Config API" - ], - "summary": "新增公告 | [itsm.portal.edit]", - "operationId": "createOrUpdateNoticeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/NoticeCreateReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«NoticeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createOrUpdateNotice", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/m/api/v1/portal/portal": { - "post": { - "tags": [ - "Mobile Portal Config API" - ], - "summary": "新增首页配置 | [itsm.portal.edit]", - "operationId": "createPortalUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PortalConfigCreateForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PortalConfigVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createPortal", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/m/api/v1/portal/service": { - "post": { - "tags": [ - "Mobile Portal Config API" - ], - "summary": "新增服务 | [itsm.portal.edit]", - "operationId": "createOrUpdateServiceUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCreateReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ServiceAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createOrUpdateService", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/activity/{ticketType}": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "查询故障活动日志 | [itsm.portal.view]", - "operationId": "activityUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketActivityForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«TicketProcessVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "activity", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/add-comment/{ticketType}": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "添加故障单据评论 | [itsm.portal.edit]", - "operationId": "createCommentsUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "notifyUsers", - "in": "query", - "description": "notifyUsers", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - }, - { - "name": "isPortal", - "in": "query", - "description": "isPortal", - "required": true, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCommentCreateForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TickCommentCreateVo»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createComments", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/add/favourite": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "添加收藏 | [itsm.portal.view]", - "operationId": "addFavouriteUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCollectForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addFavourite", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/cancel/favourite": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "取消收藏 | [itsm.portal.view]", - "operationId": "cancelFavouriteUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCollectForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "cancelFavourite", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/inc/create": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "用户报障 | [itsm.portal.add]", - "operationId": "createIncUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createInc", - "$permissions": [ - "itsm.portal.add" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my-data/company/count/type": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "查询trescale单据数量 进行: TRUESCALE_IN_PROGRESS 关闭: TRUESCALE_CLOSED 收藏: TRUESCALE_MY_COLLECT | [itsm.portal.view]", - "operationId": "searchCompanyTicketCountUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCompanyCountSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«MergeCountAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchCompanyTicketCount", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my-data/count/type": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "查询单据数量 进行: PORTAL_IN_PROGRESS 关闭: PORTAL_CLOSED 收藏: PORTAL_MY_COLLECT | [itsm.portal.view]", - "operationId": "searchTicketCountUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCountSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«MergeCountAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchTicketCount", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my-data/out/count/type": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "查询单据数量 进行: TICKET_IN_PROGRESS 关闭: TICKET_CLOSED 收藏: TICKET_MY_COLLECT | [itsm.portal.view]", - "operationId": "searchOutTicketCountUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCountSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«MergeCountAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchOutTicketCount", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my/canceled/list": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "取消的单据 | [itsm.portal.view]", - "operationId": "findMyCanceledTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyCanceledTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my/close/list": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "关闭的单据 | [itsm.portal.view]", - "operationId": "findMyCloseTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyCloseTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my/collect/list": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "我的收藏 | [itsm.portal.view]", - "operationId": "findMyCollectTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyCollectTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my/collection/list": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "我的收藏单据 | [itsm.portal.view]", - "operationId": "findMyCollectionByTypeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyCollectionByType", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my/process/list": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "进行中的单据 | [itsm.portal.view]", - "operationId": "findMyInProcessTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyInProcessTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my/resolved/list": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "已解决的单据 | [itsm.portal.view]", - "operationId": "findMyResolvedTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyResolvedTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my/ticket-deatail/mobile/{ticketNo}/{ticketType}": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "查询单据详情-移动端使用-已解决不算进行中是个单独的页签 | [itsm.portal.view]", - "operationId": "ticketDetailForMobileUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ticketDetailForMobile", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/my/ticket-deatail/{ticketNo}/{ticketType}": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "查询单据详情 | [itsm.portal.view]", - "operationId": "ticketDetailUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ticketDetail", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/out/all/{queryType}": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "查询ticket单据-公网环境 | [itsm.out-ticket.admin]", - "operationId": "findTicketOutsideAdminAllUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "queryType", - "in": "path", - "description": "queryType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findTicketOutsideAdminAll", - "$permissions": [ - "itsm.out-ticket.admin" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/out/list/{queryType}": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "查询ticket单据-公网环境 | [itsm.portal.view]", - "operationId": "findTicketOutsideUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "queryType", - "in": "path", - "description": "queryType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findTicketOutside", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/search/{ticketNo}/{ticketType}": { - "get": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "查询故障单据评论 | [itsm.portal.view]", - "operationId": "searchCommentUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«TicketCommentVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchComment", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/portal/ticket/send/email": { - "post": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "给提交人发邮件 | [itsm.portal.view]", - "operationId": "sendEmailToSubmitterUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "exampleSetFlag": false - }, - "exampleSetFlag": true - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "sendEmailToSubmitter", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/m/api/v1/template/list": { - "post": { - "tags": [ - "Mobile Template API" - ], - "summary": "模板列表 | [itsm.template.view]", - "operationId": "enableListUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«TemplateAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "enableList", - "$permissions": [ - "itsm.template.view" - ] - } - } - }, - "/itsm/m/api/v1/ticket/evaluate/add": { - "post": { - "tags": [ - "Mobile TicketEvaluate API" - ], - "summary": "用户新增评价|user add ticket evaluate | [itsm.ticket.add]", - "operationId": "addTicketEvaluateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketEvaluateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TicketEvaluateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addTicketEvaluate", - "$permissions": [ - "itsm.ticket.add" - ] - } - } - }, - "/itsm/m/api/v1/ticket/evaluate/search": { - "post": { - "tags": [ - "Mobile TicketEvaluate API" - ], - "summary": "评价列表评价|ticket evaluate page list | [itsm.admin.all]", - "operationId": "ticketEvaluatePageSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketEvaluateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketEvaluateAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ticketEvaluatePageSearch", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/m/api/v1/ticket/evaluate/{ticketNo}": { - "get": { - "tags": [ - "Mobile TicketEvaluate API" - ], - "summary": "服务评价详情 | [itsm.ticket.view]", - "operationId": "evaluateDetailUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TicketEvaluateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "evaluateDetail", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/ticket/slaPercent": { - "get": { - "tags": [ - "Mobile Portal Ticket API" - ], - "summary": "ticket sla percent and left time | [itsm.ticket.view]", - "operationId": "slaPercentUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "query", - "description": "ticketNo", - "required": true, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,object»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "slaPercent", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/m/api/v1/group/all": { - "get": { - "tags": [ - "Mobile ITSM Group User API" - ], - "summary": "get second line group | [itsm.group.view]", - "operationId": "listAllItimGroupUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«UserGroupVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listAllItimGroup", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/m/api/v1/group/first-line": { - "get": { - "tags": [ - "Mobile ITSM Group User API" - ], - "summary": "get second line group | [itsm.group.view]", - "operationId": "findFirstLineGroupUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«UserGroupApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findFirstLineGroup", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/m/api/v1/group/second-line": { - "get": { - "tags": [ - "Mobile ITSM Group User API" - ], - "summary": "get second line group | [itsm.group.view]", - "operationId": "findSecondLineGroupUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«UserGroupApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "deprecated": true, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findSecondLineGroup", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/m/api/v1/group/{groupId}/user": { - "get": { - "tags": [ - "Mobile ITSM Group User API" - ], - "summary": "list group user | [itsm.group.view]", - "operationId": "listUserByGroupIdUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "groupId", - "in": "path", - "description": "groupId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "filterCurUser", - "in": "query", - "description": "filterCurUser", - "required": false, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«UserApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listUserByGroupId", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/sr/nofity/send": { - "post": { - "tags": [ - "SR NotifyCallBack API" - ], - "summary": "[NO SECURE] itsr email notify call back api", - "operationId": "emailNotifyUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/EmailSendReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "emailNotify", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/opton-config/create": { - "post": { - "tags": [ - "OptionConfig" - ], - "summary": "新增配置 | [itsm.optionConfig.view]", - "operationId": "createUsingPOST_32", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OptionConfigRootCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/api/v1/opton-config/delete/{id}": { - "delete": { - "tags": [ - "OptionConfig" - ], - "summary": "删除配置 | [itsm.optionConfig.view]", - "operationId": "deleteUsingDELETE_29", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/api/v1/opton-config/detial/{id}": { - "get": { - "tags": [ - "OptionConfig" - ], - "summary": "详情 | [itsm.optionConfig.view]", - "operationId": "detailDataUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«OptionConfigAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detailData", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/api/v1/opton-config/search/right": { - "post": { - "tags": [ - "OptionConfig" - ], - "summary": "查询树右侧数据 | [itsm.optionConfig.view]", - "operationId": "rightDataListSearchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OntionConfigRootSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«OptionConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "rightDataListSearch", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/api/v1/opton-config/search/root": { - "post": { - "tags": [ - "OptionConfig" - ], - "summary": "查询根数据源 | [itsm.optionConfig.view]", - "operationId": "rootDataListSearchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OntionConfigRootSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«OptionConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "rootDataListSearch", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/api/v1/opton-config/tree/root/{businessType}": { - "get": { - "tags": [ - "OptionConfig" - ], - "summary": "带根节点的配置树 | [itsm.optionConfig.view]", - "operationId": "treeWithRootUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "businessType", - "in": "path", - "description": "businessType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OptionConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeWithRoot", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/api/v1/opton-config/tree/{businessType}": { - "get": { - "tags": [ - "OptionConfig" - ], - "summary": "配置树 | [itsm.optionConfig.view]", - "operationId": "treeUsingGET_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "businessType", - "in": "path", - "description": "businessType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OptionConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "tree", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/api/v1/opton-config/update": { - "post": { - "tags": [ - "OptionConfig" - ], - "summary": "更新配置 | [itsm.optionConfig.view]", - "operationId": "updateUsingPOST_6", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OptionConfigRootUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.optionConfig.view" - ] - } - } - }, - "/itsm/api/v1/org/create": { - "post": { - "tags": [ - "Organization API" - ], - "summary": "新增组织 | [itsm.admin.all]", - "operationId": "createUsingPOST_33", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org/cur-user/tree-with-group": { - "get": { - "tags": [ - "Organization API" - ], - "summary": "当前用户组织树(叶子节点为用户组) | [itsm.group.view]", - "operationId": "curUserTreeWithGroupUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "curUserTreeWithGroup", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/org/delete/{orgId}": { - "delete": { - "tags": [ - "Organization API" - ], - "summary": "删除组织 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_30", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "orgId", - "in": "path", - "description": "orgId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org/department/tree": { - "get": { - "tags": [ - "Organization API" - ], - "summary": "部门树 | [itsm.group.view]", - "operationId": "departmentTreeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«GovernanceUserDepartMentVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "departmentTree", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/org/info/{id}": { - "get": { - "tags": [ - "Organization API" - ], - "summary": "组织详情 | [itsm.admin.all]", - "operationId": "infoUsingGET_21", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«OrganizationAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org/list": { - "post": { - "tags": [ - "Organization API" - ], - "summary": "列表查询-不分页 | [itsm.admin.all]", - "operationId": "listUsingPOST_8", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org/tree": { - "get": { - "tags": [ - "Organization API" - ], - "summary": "组织树 | [itsm.admin.all]", - "operationId": "treeUsingGET_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "tree", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org/tree-with-group": { - "get": { - "tags": [ - "Organization API" - ], - "summary": "组织树(叶子节点为用户组) | [itsm.group.view]", - "operationId": "treeWithGroupUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeWithGroup", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/org/update": { - "put": { - "tags": [ - "Organization API" - ], - "summary": "修改组织 | [itsm.admin.all]", - "operationId": "updateUsingPUT_20", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org-group/create": { - "post": { - "tags": [ - "Organization Group API" - ], - "summary": "新增关联组 | [itsm.admin.all]", - "operationId": "createUsingPOST_34", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationGroupCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org-group/cur-user-group": { - "get": { - "tags": [ - "Organization Group API" - ], - "summary": "获取当前用户所有关联组 | [itsm.group.view]", - "operationId": "getGroupByCurUserUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getGroupByCurUser", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/org-group/delete/{id}": { - "delete": { - "tags": [ - "Organization Group API" - ], - "summary": "删除关联组 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_31", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org-group/detail/{id}": { - "get": { - "tags": [ - "Organization Group API" - ], - "summary": "获取服务台详细信息 | [itsm.group.view]", - "operationId": "getDetailUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«OrganizationGroupAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getDetail", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/org-group/get-by-orgid/{id}": { - "get": { - "tags": [ - "Organization Group API" - ], - "summary": "通过orgId获取group | [itsm.group.view]", - "operationId": "getGroupByOrgIdUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getGroupByOrgId", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/org-group/keywords/{keyword}/check": { - "get": { - "tags": [ - "Organization Group API" - ], - "summary": "关键词重复校验 | [itsm.group.view]", - "operationId": "keywordsCheckUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "keyword", - "in": "path", - "description": "keyword", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«OrganizationGroupAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "keywordsCheck", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/org-group/list": { - "post": { - "tags": [ - "Organization Group API" - ], - "summary": "获取列表(不分页) | [itsm.group.view]", - "operationId": "listUsingPOST_9", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationGroupSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/org-group/page": { - "post": { - "tags": [ - "Organization Group API" - ], - "summary": "分页查询关联组 | [itsm.admin.all, itsm.group.view]", - "operationId": "pageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationGroupSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«OrganizationGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "page", - "$permissions": [ - "itsm.admin.all", - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/org-group/update": { - "put": { - "tags": [ - "Organization Group API" - ], - "summary": "更新关联组 | [itsm.admin.all]", - "operationId": "updateUsingPUT_21", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationGroupUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org-group/user-group/{userCode}": { - "get": { - "tags": [ - "Organization Group API" - ], - "summary": "获取用户所有关联组 | [itsm.group.view]", - "operationId": "getGroupByUserUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "userCode", - "in": "path", - "description": "userCode", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationGroupAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getGroupByUser", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/org-group-member/list-all": { - "get": { - "tags": [ - "Organization Group Member API" - ], - "summary": "所有成员列表查询 | [itsm.ticket.view]", - "operationId": "listAllMemberUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "filterByChat", - "in": "query", - "description": "filterByChat", - "required": false, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - }, - { - "name": "ignoreUserIdle", - "in": "query", - "description": "ignoreUserIdle", - "required": false, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationGroupMemberAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listAllMember", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/org-group-member/search": { - "post": { - "tags": [ - "Organization Group Member API" - ], - "summary": "成员列表查询 | [itsm.admin.all]", - "operationId": "searchMemberUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/OrganizationGroupMemberSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«OrganizationGroupMemberAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMember", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org-group-member/{groupId}": { - "get": { - "tags": [ - "Organization Group Member API" - ], - "summary": "成员列表[状态过滤]查询 | [itsm.ticket.view]", - "operationId": "listMemberUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "groupId", - "in": "path", - "description": "groupId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "filterByWorkStatus", - "in": "query", - "description": "filterByWorkStatus", - "required": false, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationGroupMemberAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listMember", - "$permissions": [ - "itsm.ticket.view" - ] - } - }, - "post": { - "tags": [ - "Organization Group Member API" - ], - "summary": "新增成员 | [itsm.admin.all]", - "operationId": "addMemberUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "groupId", - "in": "path", - "description": "groupId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OrganizationGroupMemberReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«OrganizationGroupMemberAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addMember", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/org-group-member/{id}": { - "delete": { - "tags": [ - "Organization Group Member API" - ], - "summary": "删除成员 | [itsm.admin.all]", - "operationId": "deleteMemberUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«OrganizationGroupMemberAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteMember", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/pb-activity-comment": { - "post": { - "tags": [ - "Activity comment API" - ], - "summary": "add comment | [itsm.problem.view]", - "operationId": "createUsingPOST_35", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "notifyUsers", - "in": "query", - "description": "notifyUsers", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbActivityCommentCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbCommentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-activity-comment/search/{pbIdOrNo}": { - "get": { - "tags": [ - "Activity comment API" - ], - "summary": "search comment activity list | [itsm.problem.view]", - "operationId": "searchUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbIdOrNo", - "in": "path", - "description": "pbIdOrNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbActivityCommentAO", - "exampleSetFlag": false - } - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb/file/{id}": { - "get": { - "tags": [ - "Pb Attachment API" - ], - "summary": "Download file api | [itsm.file.edit]", - "operationId": "downloadFileUsingGET_6", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFile", - "$permissions": [ - "itsm.file.edit" - ] - } - }, - "delete": { - "tags": [ - "Pb Attachment API" - ], - "summary": "Delete File Api | [itsm.file.edit]", - "operationId": "deleteUsingDELETE_32", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/api/v1/pb/file/{type}": { - "post": { - "tags": [ - "Pb Attachment API" - ], - "summary": "Upload file api | [itsm.file.edit]", - "operationId": "uploadFileUsingPOST_6", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "IMAGE", - "VIDEO" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbAttachmentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "uploadFile", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/change-all-columns": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "get all show columns by ci type | [itsm.problem.view]", - "operationId": "listAllShowColumnUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«int,List«ChangeCiColumn»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listAllShowColumn", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/change_ci_type": { - "get": { - "tags": [ - "Pb Change API" - ], - "summary": "get all change ci type list | [itsm.problem.view]", - "operationId": "listAllChangeTypeUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«int»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listAllChangeType", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/ci-replenish/{pbId}": { - "get": { - "tags": [ - "Pb Change API" - ], - "summary": "get ci replenish by change | [itsm.problem.view]", - "operationId": "replenishUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«PbChangeCiReplenishAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "replenish", - "$permissions": [ - "itsm.problem.view" - ] - } - }, - "put": { - "tags": [ - "Pb Change API" - ], - "summary": "update the ci replenish for change | [itsm.problem.edit]", - "operationId": "updateCiReplenishUsingPUT_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbChangeCiReplenishSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbChangeCiReplenishAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateCiReplenish", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/ci-replenish/{pbId}/{id}": { - "delete": { - "tags": [ - "Pb Change API" - ], - "summary": "delete ci replenish by id | [itsm.problem.edit]", - "operationId": "deleteCiReplenishUsingDELETE_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteCiReplenish", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/ci-type-name/{pbId}": { - "get": { - "tags": [ - "Pb Change API" - ], - "summary": "get all ci type name by change | [itsm.problem.view]", - "operationId": "ciTypeByChangeUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiTypeName»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ciTypeByChange", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/ci/{pbId}": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "Create the change ci record | [itsm.problem.edit]", - "operationId": "createUsingPOST_36", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbChangeCiReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«PbChangeCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/ci/{pbId}/{id}": { - "delete": { - "tags": [ - "Pb Change API" - ], - "summary": "Remove the change ci record | [itsm.problem.edit]", - "operationId": "deleteCiUsingDELETE_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbChangeCiAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteCi", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/cis/{pbId}": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "get ci list by change | [itsm.problem.view]", - "operationId": "listCiByChangeUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ciId", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "cmdbCiId", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "cmdbCiType", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "dataJson", - "in": "query", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "allowReserved": false, - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PbChangeCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiByChange", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/del-relation/{pbId}": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "Create the change ci relationship record | [itsm.problem.edit]", - "operationId": "delRelationUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delRelation", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/list-relations": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "get relationships by ci type and ci id list | [itsm.problem.view]", - "operationId": "listCiRelationshipByTypeAndCiUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«int,List«PbChangeCiRelationAO»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiRelationshipByTypeAndCi", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/list-relations-page/{pbId}/{ciType}": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "CI关联CI 分页查询 | [itsm.change.view]", - "operationId": "listCiRelationshipByTypeAndCiPageUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "ciType", - "in": "path", - "description": "ciType", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PbChangeCiRelationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiRelationshipByTypeAndCiPage", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/list-relations-type/{pbId}": { - "get": { - "tags": [ - "Pb Change API" - ], - "summary": "CI关联CI 类型 | [itsm.change.view]", - "operationId": "listCiRelationTypeUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«int»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiRelationType", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/relation/{pbId}": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "Create the change ci relationship record | [itsm.problem.edit]", - "operationId": "createRelationshipUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbChangeCiRelationReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbChangeCiAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createRelationship", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/relations/{ciId}": { - "get": { - "tags": [ - "Pb Change API" - ], - "summary": "get relationship by ci type and ci id | [itsm.problem.view]", - "operationId": "listCiRelationshipByTypeAndCiUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ciId", - "in": "path", - "description": "ciId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«int,List«PbChangeCiRelationAO»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCiRelationshipByTypeAndCi", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/remove-ci/{pbId}": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "Remove the change ci record by change and ci ids list | [itsm.problem.edit]", - "operationId": "deleteCiByChangeUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbChangeCiAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteCiByChange", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/remove-relation/{pbId}": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "Remove the change ci relationship record | [itsm.problem.edit]", - "operationId": "deleteRelationCiUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbChangeCiAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteRelationCi", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/replenish-ci/{pbId}": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "add an replenish ci for change | [itsm.problem.edit]", - "operationId": "replenishCiUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbChangeCiReplenishReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbChangeCiReplenishAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "replenishCi", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/save-all-relations/{pbId}": { - "post": { - "tags": [ - "Pb Change API" - ], - "summary": "save all relationship for pb | [itsm.problem.edit]", - "operationId": "saveAllRelationShipsUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "saveAllRelationShips", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/search-column/{ciTypeId}": { - "get": { - "tags": [ - "Pb Change API" - ], - "summary": "get change ci search column by type id | [itsm.problem.view]", - "operationId": "listSearchColumnUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ciTypeId", - "in": "path", - "description": "ciTypeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Array«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listSearchColumn", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-change-ci/show-column/{ciTypeId}": { - "get": { - "tags": [ - "Pb Change API" - ], - "summary": "get cmdb ci show column by type id | [itsm.problem.view]", - "operationId": "listShowColumnByTypeUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ciTypeId", - "in": "path", - "description": "ciTypeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiColumn»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listShowColumnByType", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb": { - "post": { - "tags": [ - "Pb API" - ], - "summary": "创建问题单据 | [itsm.problem.edit]", - "operationId": "createUsingPOST_37", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbInfoCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbInfoAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb/batch-pb": { - "post": { - "tags": [ - "Pb API" - ], - "summary": "批量查询Pb | [itsm.problem.view]", - "operationId": "batchPbUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbinfoSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«PbInfoAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchPb", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb/export": { - "post": { - "tags": [ - "Pb API" - ], - "summary": "导出数据 | [itsm.problem.view]", - "operationId": "exportDataFileUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbinfoSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "exportDataFile", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb/fulltext": { - "post": { - "tags": [ - "Pb API" - ], - "summary": "全文检索 | [itsm.problem.view]", - "operationId": "fulltextSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbFullTextSearch", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PbInfoAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "fulltextSearch", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb/getSlaPercent/{pbNo}": { - "get": { - "tags": [ - "Pb API" - ], - "summary": "查询问题工单的sla进度百分比 | [itsm.problem.view]", - "operationId": "getSlaPercentForPbUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbNo", - "in": "path", - "description": "pbNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getSlaPercentForPb", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb/groupList": { - "get": { - "tags": [ - "Pb API" - ], - "summary": "所有PB中的组织列表 | [itsm.problem.view]", - "operationId": "groupListUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "groupList", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb/info": { - "put": { - "tags": [ - "Pb API" - ], - "summary": "更新PB | [itsm.problem.edit]", - "operationId": "updateUsingPUT_22", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbInfoUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb/info/{pbNum}": { - "get": { - "tags": [ - "Pb API" - ], - "summary": "Pb info 详情 | [itsm.problem.view]", - "operationId": "findUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbNum", - "in": "path", - "description": "pbNum", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbInfoDetailAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "find", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb/relate/add": { - "post": { - "tags": [ - "Pb API" - ], - "summary": "添加PB关联单据 | [itsm.problem.edit]", - "operationId": "addRelateTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbTicketRelateUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addRelateTicket", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb/relate/delete": { - "delete": { - "tags": [ - "Pb API" - ], - "summary": "删除PB关联单据 | [itsm.problem.edit]", - "operationId": "deleteRelateTicketUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbTicketRelateUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteRelateTicket", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/pb/search": { - "post": { - "tags": [ - "Pb API" - ], - "summary": "查询问题单据 | [itsm.problem.view]", - "operationId": "searchUsingPOST_35", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbinfoSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PnInfoWithSlaVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pbmanagement/groupList": { - "get": { - "tags": [ - "pb-management-controller" - ], - "summary": "所有PB中的组织列表 | [itsm.problem.view]", - "operationId": "groupListUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«string»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "groupList", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pbmanagement/pbInfoDetail": { - "get": { - "tags": [ - "pb-management-controller" - ], - "summary": "查询所属应用的pb单据信息 | [itsm.problem.view]", - "operationId": "pbInfoDetailUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "type", - "in": "query", - "description": "type", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "status", - "in": "query", - "description": "status", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "priority", - "in": "query", - "description": "priority", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "cmdbCiId", - "in": "query", - "description": "cmdbCiId", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PbManagementPbEntry»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "pbInfoDetail", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pbmanagement/pbReport": { - "post": { - "tags": [ - "pb-management-controller" - ], - "summary": "查询所属应用的pb单据信息 | [itsm.admin.all]", - "operationId": "pbReportUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbReportSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PbManagementReportEntry»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "pbReport", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/pbmanagement/searchCiApp": { - "post": { - "tags": [ - "pb-management-controller" - ], - "summary": "查询所有CiApp | [itsm.problem.view]", - "operationId": "appUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CiTypeForm", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«PbManagementEntry»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "app", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pbmanagement/sortCi": { - "post": { - "tags": [ - "pb-management-controller" - ], - "summary": "查询关联CI数量及排序 | [itsm.problem.view]", - "operationId": "ciSortUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbCiSortReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«DashBoardAppEntry»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ciSort", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-subtask": { - "post": { - "tags": [ - "Pb Subtask API" - ], - "summary": "新增子任务 | [itsm.subtask.add]", - "operationId": "createUsingPOST_38", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbSubtaskCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbSubTaskAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.subtask.add" - ] - } - } - }, - "/itsm/api/v1/pb-subtask/detail/{taskNo}": { - "get": { - "tags": [ - "Pb Subtask API" - ], - "summary": "查询任务详情 | [itsm.subtask.view]", - "operationId": "detailUsingGET_7", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "taskNo", - "in": "path", - "description": "taskNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbSubTaskAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detail", - "$permissions": [ - "itsm.subtask.view" - ] - } - } - }, - "/itsm/api/v1/pb-subtask/my-pending": { - "post": { - "tags": [ - "Pb Subtask API" - ], - "summary": "查询我的待办-子任务 | [itsm.subtask.view]", - "operationId": "myPendingUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbSubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PbSubTaskAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myPending", - "$permissions": [ - "itsm.subtask.view" - ] - } - } - }, - "/itsm/api/v1/pb-subtask/my-task": { - "post": { - "tags": [ - "Pb Subtask API" - ], - "summary": "查询我创建的子任务 | [itsm.subtask.view]", - "operationId": "myTaskUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbSubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PbSubTaskAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myTask", - "$permissions": [ - "itsm.subtask.view" - ] - } - } - }, - "/itsm/api/v1/pb-subtask/search": { - "post": { - "tags": [ - "Pb Subtask API" - ], - "summary": "查询所有子任务 | [itsm.problem.view]", - "operationId": "searchUsingPOST_36", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbSubTaskSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PbSubTaskAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-subtask/search/{pbNum}": { - "get": { - "tags": [ - "Pb Subtask API" - ], - "summary": "根据问题单据查询子任务 | [itsm.subtask.view]", - "operationId": "searchByIncNoUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbNum", - "in": "path", - "description": "pbNum", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«PbSubTaskAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchByIncNo", - "$permissions": [ - "itsm.subtask.view" - ] - } - } - }, - "/itsm/api/v1/pb-subtask/{taskNo}": { - "put": { - "tags": [ - "Pb Subtask API" - ], - "summary": "更新子任务 | [itsm.subtask.edit]", - "operationId": "updateUsingPUT_23", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "taskNo", - "in": "path", - "description": "taskNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbSubtaskUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PbSubTaskAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.subtask.edit" - ] - } - } - }, - "/itsm/api/v1/pb-relate-ticket/search": { - "post": { - "tags": [ - "Pb Ticket API" - ], - "summary": "查询问题的关联单据 | [itsm.problem.view]", - "operationId": "searchRelationUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbTicketsSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PbRelateTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchRelation", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/pb-relate-ticket/{pbId}": { - "post": { - "tags": [ - "Pb Ticket API" - ], - "summary": "创建票据关联 | [itsm.problem.edit]", - "operationId": "batchCreateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbTicketCreateReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«PbItpbTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchCreate", - "$permissions": [ - "itsm.problem.edit" - ] - } - }, - "delete": { - "tags": [ - "Pb Ticket API" - ], - "summary": "删除关联单据 | [itsm.problem.edit]", - "operationId": "deleteUsingDELETE_33", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pbId", - "in": "path", - "description": "pbId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PbTicketDeleteReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.problem.edit" - ] - } - } - }, - "/itsm/api/v1/person/tickets/search": { - "post": { - "tags": [ - "PersonTickets API" - ], - "summary": "人员提单信息查询|person ticket info search | [itsm.ticket.view]", - "operationId": "ticketEvaluatePageSearchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PersonTicketsForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«PersonTicketsCommonVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ticketEvaluatePageSearch", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/portal/common-link": { - "post": { - "tags": [ - "Portal Config API" - ], - "summary": "新增常用链接 | [itsm.portal.edit]", - "operationId": "createOrUpdateLinkUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CommonCreateReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«CommonLinkAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createOrUpdateLink", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/config": { - "post": { - "tags": [ - "Portal Config API" - ], - "summary": "新增配置项 | [itsm.portal.edit]", - "operationId": "createOrUpdateConfigUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ConfigCreateReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createOrUpdateConfig", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/detail/new/notice/{isNew}": { - "get": { - "tags": [ - "Portal Config API" - ], - "summary": "查看公告最新详情 | [itsm.portal.view]", - "operationId": "portalNoticeDetailByNewUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "isNew", - "in": "path", - "description": "isNew", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«NoticeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "portalNoticeDetailByNew", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/detail/new/portal/{isNew}": { - "get": { - "tags": [ - "Portal Config API" - ], - "summary": "查看首页最新配置详情 | [itsm.portal.view]", - "operationId": "portalDetailNewUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "isNew", - "in": "path", - "description": "isNew", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PortalAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "portalDetailNew", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/detail/notice/{status}": { - "get": { - "tags": [ - "Portal Config API" - ], - "summary": "查看公告详情 | [itsm.portal.view]", - "operationId": "portalNoticeDetailUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "status", - "in": "path", - "description": "status", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«NoticeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "portalNoticeDetail", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/detail/portal/special/{status}": { - "get": { - "tags": [ - "Portal Config API" - ], - "summary": "新版本首页专区 | [itsm.portal.view]", - "operationId": "portalDetailSpecialUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "status", - "in": "path", - "description": "status", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PortalAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "portalDetailSpecial", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/detail/portal/{status}": { - "get": { - "tags": [ - "Portal Config API" - ], - "summary": "查看首页配置详情 | [itsm.portal.view]", - "operationId": "portalDetailUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "status", - "in": "path", - "description": "status", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PortalAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "portalDetail", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/notice": { - "post": { - "tags": [ - "Portal Config API" - ], - "summary": "新增公告 | [itsm.portal.edit]", - "operationId": "createOrUpdateNoticeUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/NoticeCreateReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«NoticeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createOrUpdateNotice", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/portal": { - "post": { - "tags": [ - "Portal Config API" - ], - "summary": "新增首页配置 | [itsm.portal.edit]", - "operationId": "createPortalUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/PortalConfigCreateForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PortalConfigVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createPortal", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/service": { - "post": { - "tags": [ - "Portal Config API" - ], - "summary": "新增服务 | [itsm.portal.edit]", - "operationId": "createOrUpdateServiceUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCreateReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ServiceAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createOrUpdateService", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/audit": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "管理员审批 | [itsm.portal.edit]", - "operationId": "auditUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogApprovalCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "audit", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/auth/{id}": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "提交审批 | [itsm.portal.edit]", - "operationId": "authUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "auth", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/bpm-node/info/{catalogId}": { - "get": { - "tags": [ - "Portal Service Request API" - ], - "summary": "查看流程用户任务节点 | [itsm.portal.edit]", - "operationId": "getCatalogBpmNodeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BpmNodeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getCatalogBpmNode", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/catalog/search": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "searchCatalog | [itsm.portal.view]", - "operationId": "searchCatalogUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchCatalog", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/category/item-published/search": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "searchItemPublishedCategory | [itsm.portal.view]", - "operationId": "searchItemPublishedCategoryUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServicePortalSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,object»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchItemPublishedCategory", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/category/search": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "searchCategory | [itsm.portal.view]", - "operationId": "searchCategoryUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServicePortalSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,object»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchCategory", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/detail/{id}": { - "get": { - "tags": [ - "Portal Service Request API" - ], - "summary": "查询详情 | [itsm.portal.view]", - "operationId": "infoUsingGET_22", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceCatalogDetailAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/done": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "已审批申请列表 | [itsm.portal.view]", - "operationId": "doneUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogApprovalSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogApprovalAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "done", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/my/search": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "查询我的服务(我创建的) | [itsm.portal.view]", - "operationId": "searchMyUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogDetailAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMy", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/requests/{requestNo}/historic-activities": { - "get": { - "tags": [ - "Portal Service Request API" - ], - "summary": "查询历史任务审批结果 | [itsm.portal.view]", - "operationId": "getHistoricActivitiesUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "requestNo", - "in": "path", - "description": "requestNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«Map»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getHistoricActivities", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/save": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "新增基本信息 | [itsm.portal.edit]", - "operationId": "saveUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "save", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/to-audit": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "待审服务 | [itsm.portal.view]", - "operationId": "toAuditUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "toAudit", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/service-request/update": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "保存基本信息 | [itsm.portal.edit]", - "operationId": "updateUsingPOST_7", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/activity/{ticketType}": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "查询故障活动日志 | [itsm.portal.view]", - "operationId": "activityUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketActivityForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«TicketProcessVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "activity", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/add-comment/{ticketType}": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "添加故障单据评论 | [itsm.portal.edit]", - "operationId": "createCommentsUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "notifyUsers", - "in": "query", - "description": "notifyUsers", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - }, - { - "name": "isPortal", - "in": "query", - "description": "isPortal", - "required": true, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCommentCreateForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TickCommentCreateVo»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createComments", - "$permissions": [ - "itsm.portal.edit" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/add/favourite": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "添加收藏 | [itsm.portal.view]", - "operationId": "addFavouriteUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCollectForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addFavourite", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/cancel/favourite": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "取消收藏 | [itsm.portal.view]", - "operationId": "cancelFavouriteUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCollectForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "cancelFavourite", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/inc/create": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "用户报障 | [itsm.portal.add]", - "operationId": "createIncUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«IncidentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createInc", - "$permissions": [ - "itsm.portal.add" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my-data/company/count/type": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "查询trescale单据数量 进行: TRUESCALE_IN_PROGRESS 关闭: TRUESCALE_CLOSED 收藏: TRUESCALE_MY_COLLECT | [itsm.portal.view]", - "operationId": "searchCompanyTicketCountUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCompanyCountSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«MergeCountAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchCompanyTicketCount", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my-data/count/type": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "查询单据数量 进行: PORTAL_IN_PROGRESS 关闭: PORTAL_CLOSED 收藏: PORTAL_MY_COLLECT | [itsm.portal.view]", - "operationId": "searchTicketCountUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCountSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«MergeCountAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchTicketCount", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my-data/out/count/type": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "查询单据数量 进行: TICKET_IN_PROGRESS 关闭: TICKET_CLOSED 收藏: TICKET_MY_COLLECT | [itsm.portal.view]", - "operationId": "searchOutTicketCountUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCountSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«MergeCountAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchOutTicketCount", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my/canceled/list": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "取消的单据 | [itsm.portal.view]", - "operationId": "findMyCanceledTicketUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyCanceledTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my/close/list": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "关闭的单据 | [itsm.portal.view]", - "operationId": "findMyCloseTicketUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyCloseTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my/collect/list": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "我的收藏 | [itsm.portal.view]", - "operationId": "findMyCollectTicketUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyCollectTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my/collection/list": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "我的收藏单据 | [itsm.portal.view]", - "operationId": "findMyCollectionByTypeUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyCollectionByType", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my/process/list": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "进行中的单据 | [itsm.portal.view]", - "operationId": "findMyInProcessTicketUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyInProcessTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my/resolved/list": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "已解决的单据 | [itsm.portal.view]", - "operationId": "findMyResolvedTicketUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyResolvedTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my/ticket-deatail/mobile/{ticketNo}/{ticketType}": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "查询单据详情-移动端使用-已解决不算进行中是个单独的页签 | [itsm.portal.view]", - "operationId": "ticketDetailForMobileUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ticketDetailForMobile", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/my/ticket-deatail/{ticketNo}/{ticketType}": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "查询单据详情 | [itsm.portal.view]", - "operationId": "ticketDetailUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ticketDetail", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/out/all/{queryType}": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "查询ticket单据-公网环境 | [itsm.out-ticket.admin]", - "operationId": "findTicketOutsideAdminAllUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "queryType", - "in": "path", - "description": "queryType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findTicketOutsideAdminAll", - "$permissions": [ - "itsm.out-ticket.admin" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/out/list/{queryType}": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "查询ticket单据-公网环境 | [itsm.portal.view]", - "operationId": "findTicketOutsideUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "queryType", - "in": "path", - "description": "queryType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/IncidentPageReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findTicketOutside", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/search/{ticketNo}/{ticketType}": { - "get": { - "tags": [ - "Portal Ticket API" - ], - "summary": "查询故障单据评论 | [itsm.portal.view]", - "operationId": "searchCommentUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«TicketCommentVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchComment", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/send/email": { - "post": { - "tags": [ - "Portal Ticket API" - ], - "summary": "给提交人发邮件 | [itsm.portal.view]", - "operationId": "sendEmailToSubmitterUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "additionalProperties": { - "type": "string", - "exampleSetFlag": false - }, - "exampleSetFlag": true - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "sendEmailToSubmitter", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/evaluate/add": { - "post": { - "tags": [ - "Portal TicketEvaluate API" - ], - "summary": "用户新增评价|user add ticket evaluate | [itsm.portal.add]", - "operationId": "addTicketEvaluateUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketEvaluateCreateForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TicketEvaluateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "deprecated": true, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addTicketEvaluate", - "$permissions": [ - "itsm.portal.add" - ] - } - } - }, - "/itsm/api/v1/portal/ticket/evaluate/{ticketNo}": { - "get": { - "tags": [ - "Portal TicketEvaluate API" - ], - "summary": "服务评价详情 | [itsm.portal.view]", - "operationId": "evaluateDetailUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TicketEvaluateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "deprecated": true, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "evaluateDetail", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/bpm/proc-def/deploy": { - "post": { - "tags": [ - "Approval Process Definition API" - ], - "summary": "发布流程图 | [itsm.serviceCatalog.create]", - "operationId": "deployProcessDefinitionUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "editSource", - "in": "query", - "description": "editSource", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ORIGIN", - "SIMPLIFY" - ] - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "string", - "format": "binary", - "exampleSetFlag": true - } - }, - "application/octet-stream": { - "schema": { - "type": "string", - "format": "binary", - "exampleSetFlag": true - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deployProcessDefinition", - "$permissions": [ - "itsm.serviceCatalog.create" - ] - } - } - }, - "/itsm/api/v1/bpm/proc-def/{id}/file": { - "get": { - "tags": [ - "Approval Process Definition API" - ], - "summary": "查询流程图 | [itsm.serviceCatalog.view]", - "operationId": "findProcessDefinitionResourceByIdUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ProcessDefinitionResourceVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findProcessDefinitionResourceById", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/reports/changes/overall-status/my": { - "get": { - "tags": [ - "Change Reports API" - ], - "summary": "My overall changes status | [itsm.change.view]", - "operationId": "myOverallChangeStatusUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«OverallChangeStatusAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myOverallChangeStatus", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/reports/changes/status/my": { - "post": { - "tags": [ - "Change Reports API" - ], - "summary": "My change count by status | [itsm.change.view]", - "operationId": "myChangeStatusUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeStatusReportReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ChangeStatusReportAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myChangeStatus", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/reports/changes/violations": { - "post": { - "tags": [ - "Change Reports API" - ], - "summary": "Search violated changes | [itsm.change.view]", - "operationId": "violatedChangesUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeViolationSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeViolationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "violatedChanges", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/reports/changes/violations/my": { - "post": { - "tags": [ - "Change Reports API" - ], - "summary": "Violated changes of my | [itsm.change.view]", - "operationId": "myViolatedChangesUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ChangeViolationSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ChangeViolationAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myViolatedChanges", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/request/": { - "post": { - "tags": [ - "Request API" - ], - "summary": "request | [itsm.config.view]", - "operationId": "requestUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/RequestForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "object", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "request", - "$permissions": [ - "itsm.config.view" - ] - } - } - }, - "/itsm/api/v1/request/return-response": { - "post": { - "tags": [ - "Request API" - ], - "summary": "requestReturnResponse | [itsm.config.view]", - "operationId": "requestReturnResponseUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/RequestForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "requestReturnResponse", - "$permissions": [ - "itsm.config.view" - ] - } - } - }, - "/itsm/api/v1/risk-assessment/conflicts/{changeId}": { - "get": { - "tags": [ - "Change Risk Assessment API" - ], - "summary": "list conflicted CIs by change id | [itsm.change.view]", - "operationId": "listConflictsUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ConflictedCiChangeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listConflicts", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/risk-assessment/critical-apps/{changeId}": { - "get": { - "tags": [ - "Change Risk Assessment API" - ], - "summary": "list critical applications by change id | [itsm.change.view]", - "operationId": "listCriticalAppsUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ChangeCiAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCriticalApps", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/risk-assessment/preview/{changeId}": { - "post": { - "tags": [ - "Change Risk Assessment API" - ], - "summary": "Preview the risk assessment info by change id and change plan vo | [itsm.change.view]", - "operationId": "previewUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/RiskCalcReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«RiskAssessmentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "preview", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/risk-assessment/risk-comments/{changeId}": { - "put": { - "tags": [ - "Change Risk Assessment API" - ], - "summary": "Edit The Risk Comments For Change | [itsm.change.edit]", - "operationId": "riskCommentsUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/RiskAssessmentUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«RiskAssessmentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "riskComments", - "$permissions": [ - "itsm.change.edit" - ] - } - } - }, - "/itsm/api/v1/risk-assessment/{changeId}": { - "get": { - "tags": [ - "Change Risk Assessment API" - ], - "summary": "Get the risk assessment info by change id | [itsm.change.view]", - "operationId": "infoUsingGET_23", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«RiskAssessmentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.change.view" - ] - } - } - }, - "/itsm/api/forward/site_common_frag/header/{id}": { - "get": { - "tags": [ - "Portal Router Url API" - ], - "summary": "[NO SECURE] forward", - "operationId": "forwardUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK" - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "forward", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/service-catalog/file/{id}": { - "get": { - "tags": [ - "Service Attachment API" - ], - "summary": "Download file api | [itsm.file.view]", - "operationId": "downloadFileUsingGET_7", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFile", - "$permissions": [ - "itsm.file.view" - ] - } - }, - "delete": { - "tags": [ - "Service Attachment API" - ], - "summary": "Delete File Api | [itsm.file.edit]", - "operationId": "deleteUsingDELETE_34", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/api/v1/service-catalog/file/{type}": { - "post": { - "tags": [ - "Service Attachment API" - ], - "summary": "Upload file api | [itsm.file.edit]", - "operationId": "uploadFileUsingPOST_7", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "DOC", - "IMAGE" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceAttachmentAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "uploadFile", - "$permissions": [ - "itsm.file.edit" - ] - } - } - }, - "/itsm/api/v1/service-catalog/auth/{id}": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "服务提交审批 | [itsm.serviceCatalog.update]", - "operationId": "authUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "auth", - "$permissions": [ - "itsm.serviceCatalog.update" - ] - } - } - }, - "/itsm/api/v1/service-catalog/batch": { - "delete": { - "tags": [ - "ServiceCatalog" - ], - "summary": "批量删除服务项 | [itsm.serviceCatalog.delete]", - "operationId": "batchDeleteUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«CatalogDeleteAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchDelete", - "$permissions": [ - "itsm.serviceCatalog.delete" - ] - } - } - }, - "/itsm/api/v1/service-catalog/batch-search": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "通过ID批量查询 | [itsm.serviceCatalog.view]", - "operationId": "batchSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ServiceDatailFavouriteAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchSearch", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/batch-search-x": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "通过ID批量查询,适配xbuilder不支持list | [itsm.serviceCatalog.view]", - "operationId": "batchSearchXbuilderUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogBatchSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ServiceDatailFavouriteAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchSearchXbuilder", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/bpm-form-config/info/{catalogId}": { - "get": { - "tags": [ - "ServiceCatalog" - ], - "summary": "查看服务bpm-form配置 | [itsm.serviceCatalog.view]", - "operationId": "getFormConfigUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,NodeConfig»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getFormConfig", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/bpm-form/{catalogId}": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "更新服务bpm-form配置 | [itsm.serviceCatalog.update]", - "operationId": "updateBpmFormConfigUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "additionalProperties": { - "$ref": "#/components/schemas/NodeConfig", - "exampleSetFlag": false - }, - "exampleSetFlag": true - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,NodeConfig»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateBpmFormConfig", - "$permissions": [ - "itsm.serviceCatalog.update" - ] - } - } - }, - "/itsm/api/v1/service-catalog/bpm-node/info/{catalogId}": { - "get": { - "tags": [ - "ServiceCatalog" - ], - "summary": "查看流程用户任务节点 | [itsm.serviceCatalog.view]", - "operationId": "getCatalogBpmNodeUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BpmNodeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getCatalogBpmNode", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/copy": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "复制服务 | [itsm.serviceCatalog.create]", - "operationId": "copyUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogCopyReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "copy", - "$permissions": [ - "itsm.serviceCatalog.create" - ] - } - } - }, - "/itsm/api/v1/service-catalog/detail/{id}": { - "get": { - "tags": [ - "ServiceCatalog" - ], - "summary": "查询详情 | [itsm.serviceCatalog.view]", - "operationId": "infoUsingGET_24", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceCatalogDetailVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/export/list": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "导出多个服务项 | [itsm.serviceCatalog.view]", - "operationId": "catalogExportListUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "catalogExportList", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/export/{catalogId}": { - "get": { - "tags": [ - "ServiceCatalog" - ], - "summary": "导出单个服务项 | [itsm.serviceCatalog.view]", - "operationId": "catalogExportUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "catalogExport", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/form-component/info/{catalogId}": { - "get": { - "tags": [ - "ServiceCatalog" - ], - "summary": "查看form表单组件 | [itsm.serviceCatalog.view]", - "operationId": "getCatalogFormComponentUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«FormComponentAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getCatalogFormComponent", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/hot/search": { - "get": { - "tags": [ - "ServiceCatalog" - ], - "summary": "热门服务 | [itsm.serviceCatalog.view]", - "operationId": "hotServiceUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«HotServiceAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "hotService", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/hot/set/{id}": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "设置服务是否热门 | [itsm.admin.all]", - "operationId": "hotSetUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "hotType", - "in": "query", - "description": "hotType", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "HOT", - "NOT_HOT" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "hotSet", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-catalog/import": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "导入单个服务项 | [itsm.serviceCatalog.create]", - "operationId": "catalogImportUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "catalogImport", - "$permissions": [ - "itsm.serviceCatalog.create" - ] - } - } - }, - "/itsm/api/v1/service-catalog/import/list": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "导入多个服务项 | [itsm.serviceCatalog.create]", - "operationId": "catalogImportListUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceImportResultAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "catalogImportList", - "$permissions": [ - "itsm.serviceCatalog.create" - ] - } - } - }, - "/itsm/api/v1/service-catalog/list": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "查询所有服务 | [itsm.serviceCatalog.view]", - "operationId": "listUsingPOST_10", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogDetailAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/offline/{id}": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "下线 | [itsm.serviceCatalog.update]", - "operationId": "offlineUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "offline", - "$permissions": [ - "itsm.serviceCatalog.update" - ] - } - } - }, - "/itsm/api/v1/service-catalog/published/search": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "已发布的搜索 | [itsm.serviceCatalog.view]", - "operationId": "searchPublishedUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchPublished", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/save": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "新增服务基本信息 | [itsm.serviceCatalog.create]", - "operationId": "saveUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "save", - "$permissions": [ - "itsm.serviceCatalog.create" - ] - } - } - }, - "/itsm/api/v1/service-catalog/search-by-name": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "根据服务名查询服务信息 | [itsm.serviceCatalog.view]", - "operationId": "searchByServiceNameUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogNameSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchByServiceName", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/update": { - "post": { - "tags": [ - "ServiceCatalog" - ], - "summary": "更新服务 | [itsm.serviceCatalog.update]", - "operationId": "updateUsingPOST_8", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.serviceCatalog.update" - ] - } - } - }, - "/itsm/api/v1/service-catalog/{id}": { - "delete": { - "tags": [ - "ServiceCatalog" - ], - "summary": "删除 | [itsm.serviceCatalog.delete]", - "operationId": "deleteUsingDELETE_35", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.serviceCatalog.delete" - ] - } - } - }, - "/itsm/api/v1/service-catalog/{id}/file": { - "get": { - "tags": [ - "ServiceCatalog" - ], - "summary": "Get the process definition resource file by id | [itsm.serviceCatalog.view]", - "operationId": "findProcessDefinitionResourceByIdUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ProcessDefinitionResourceVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findProcessDefinitionResourceById", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/role-user-catalog": { - "post": { - "tags": [ - "ServiceCatalogPrivilege" - ], - "summary": "列表查询 | [itsm.ServiceCatalogPrivilege.view]", - "operationId": "listCatalogUserUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogPrivilegeSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«CatalogPrivilegeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listCatalogUser", - "$permissions": [ - "itsm.ServiceCatalogPrivilege.view" - ] - } - } - }, - "/itsm/api/v1/service-catalog/role-user-catalog/user": { - "post": { - "tags": [ - "ServiceCatalogPrivilege" - ], - "summary": "新增或修改 | [itsm.ServiceCatalogPrivilege.update]", - "operationId": "upsertCatalogUserUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogPrivilegeCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "upsertCatalogUser", - "$permissions": [ - "itsm.ServiceCatalogPrivilege.update" - ] - } - } - }, - "/itsm/api/v1/service-catalog/role-user-catalog/{catalogId}/{userId}": { - "delete": { - "tags": [ - "ServiceCatalogPrivilege" - ], - "summary": "删除成员 | [itsm.ServiceCatalogPrivilege.update]", - "operationId": "deleteCatalogUserUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "userId", - "in": "path", - "description": "userId", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«object»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteCatalogUser", - "$permissions": [ - "itsm.ServiceCatalogPrivilege.update" - ] - } - } - }, - "/itsm/api/v1/service-category": { - "get": { - "tags": [ - "ServiceCategory" - ], - "summary": "查询服务类别树 | [itsm.serviceCategory.view]", - "operationId": "treeUsingGET_5", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "openProductName", - "in": "query", - "description": "openProductName", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ServiceCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "tree", - "$permissions": [ - "itsm.serviceCategory.view" - ] - } - } - }, - "/itsm/api/v1/service-category/detail/{id}": { - "get": { - "tags": [ - "ServiceCategory" - ], - "summary": "查询服务类别详情 | [itsm.serviceCategory.view]", - "operationId": "infoUsingGET_25", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceCategoryAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.serviceCategory.view" - ] - } - } - }, - "/itsm/api/v1/service-category/list": { - "get": { - "tags": [ - "ServiceCategory" - ], - "summary": "查询服务类别(不分页) | [itsm.serviceCategory.view]", - "operationId": "searchListUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "openProductNameExc", - "in": "query", - "description": "openProductNameExc", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ServiceCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchList", - "$permissions": [ - "itsm.serviceCategory.view" - ] - } - } - }, - "/itsm/api/v1/service-category/search": { - "post": { - "tags": [ - "ServiceCategory" - ], - "summary": "查询服务类别-分页 | [itsm.serviceCategory.view]", - "operationId": "searchUsingPOST_37", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCategorySearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.serviceCategory.view" - ] - } - } - }, - "/itsm/api/v1/service-category/submit": { - "post": { - "tags": [ - "ServiceCategory" - ], - "summary": "新增服务类别 | [itsm.admin.all]", - "operationId": "submitUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCategoryCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "submit", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-category/tree/search": { - "post": { - "tags": [ - "ServiceCategory" - ], - "summary": "查询服务类别树-分页 | [itsm.serviceCategory.view]", - "operationId": "treeSearchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCategorySearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "treeSearch", - "$permissions": [ - "itsm.serviceCategory.view" - ] - } - } - }, - "/itsm/api/v1/service-category/update/{id}": { - "post": { - "tags": [ - "ServiceCategory" - ], - "summary": "修改服务类别 | [itsm.admin.all]", - "operationId": "updateUsingPOST_9", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCategoryUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-category/{id}": { - "delete": { - "tags": [ - "ServiceCategory" - ], - "summary": "删除服务类别 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_36", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-category/portal/catalog-and-knowledge-search": { - "post": { - "tags": [ - "ServiceCategoryPortal" - ], - "summary": "同时搜索服务和知识 | [itsm.serviceCatalog.view]", - "operationId": "catalogAndKnowledgeUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/KmKnowledgeAndCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,object»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "catalogAndKnowledge", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-category/portal/hot-catalog": { - "post": { - "tags": [ - "ServiceCategoryPortal" - ], - "summary": "获取8条最热门服务项 | [itsm.serviceCatalog.view]", - "operationId": "hotCatalogUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ServiceCatalogDetailVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "hotCatalog", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-category/portal/search": { - "post": { - "tags": [ - "ServiceCategoryPortal" - ], - "summary": "新portal首页根据tag查询服务类别 | [itsm.serviceCategory.view]", - "operationId": "searchByServiceCategoryTagUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,List«ServiceCategoryAO»»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchByServiceCategoryTag", - "$permissions": [ - "itsm.serviceCategory.view" - ] - } - } - }, - "/itsm/api/v1/service-category/portal/search/more": { - "post": { - "tags": [ - "ServiceCategoryPortal" - ], - "summary": "新portal首页根据tag查询服务类别-更多 | [itsm.serviceCategory.view]", - "operationId": "searchPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCategorySearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCategoryAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchPage", - "$permissions": [ - "itsm.serviceCategory.view" - ] - } - } - }, - "/itsm/api/v1/service-category/portal/search/page": { - "post": { - "tags": [ - "ServiceCategoryPortal" - ], - "summary": "查询服务类别分页 | [itsm.serviceCategory.view]", - "operationId": "searchByServiceCategoryTagUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogNameSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,object»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchByServiceCategoryTag", - "$permissions": [ - "itsm.serviceCategory.view" - ] - } - } - }, - "/itsm/api/v1/service-desk/config": { - "get": { - "tags": [ - "Service Desk API" - ], - "summary": "服务台智能助理配置 | [itsm.config.view]", - "operationId": "getServiceDeskConfigUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getServiceDeskConfig", - "$permissions": [ - "itsm.config.view" - ] - } - }, - "put": { - "tags": [ - "Service Desk API" - ], - "summary": "服务台智能助理配置 | [itsm.config.view]", - "operationId": "updateServiceDeskConfigUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceDeskConfigAO", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateServiceDeskConfig", - "$permissions": [ - "itsm.config.view" - ] - } - } - }, - "/itsm/api/v1/service-desk/member-info": { - "get": { - "tags": [ - "Service Desk API" - ], - "summary": "查询服务台成员信息 | [itsm.config.view]", - "operationId": "serviceDeskMemberInfoUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«OrganizationGroupMemberAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "serviceDeskMemberInfo", - "$permissions": [ - "itsm.config.view" - ] - } - } - }, - "/itsm/api/v1/service-desk/member/check": { - "get": { - "tags": [ - "Service Desk API" - ], - "summary": "查询登陆人是否为服务台成员 | [itsm.config.view]", - "operationId": "isServiceDeskMemberUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "isServiceDeskMember", - "$permissions": [ - "itsm.config.view" - ] - } - } - }, - "/itsm/api/v1/service-desk/member/status/{onlineStatus}": { - "put": { - "tags": [ - "Service Desk API" - ], - "summary": "服务台成员修改成员状态 | [itsm.config.view]", - "operationId": "editServiceDeskMemberStatusUsingPUT_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "onlineStatus", - "in": "path", - "description": "onlineStatus", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "editServiceDeskMemberStatus", - "$permissions": [ - "itsm.config.view" - ] - } - } - }, - "/itsm/api/v1/service-desk/member/status/{userCode}/{onlineStatus}": { - "put": { - "tags": [ - "Service Desk API" - ], - "summary": "管理员修改用户状态 | [itsm.admin.all]", - "operationId": "editServiceDeskMemberStatusUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "userCode", - "in": "path", - "description": "userCode", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "onlineStatus", - "in": "path", - "description": "onlineStatus", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "editServiceDeskMemberStatus", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-favourite/my-collection-list": { - "post": { - "tags": [ - "ServiceFavourite" - ], - "summary": "service-favourite my-collection-list | [itsm.serviceCatalog.view]", - "operationId": "myCollectionListUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceFavouriteSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceFavouriteAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myCollectionList", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-favourite/{catalogId}/{status}/collect": { - "get": { - "tags": [ - "ServiceFavourite" - ], - "summary": "service-favourite collect | [itsm.serviceCatalog.edit]", - "operationId": "collectUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "status", - "in": "path", - "description": "status", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CANCEL_FAVOURITE", - "FAVOURITE" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceFavouriteAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "collect", - "$permissions": [ - "itsm.serviceCatalog.edit" - ] - } - } - }, - "/itsm/api/v1/service-favourite/{requestId}": { - "get": { - "tags": [ - "ServiceFavourite" - ], - "summary": "find favourite | [itsm.serviceCatalog.view]", - "operationId": "getFavouriteInfoUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "requestId", - "in": "path", - "description": "requestId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceFavouriteAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getFavouriteInfo", - "$permissions": [ - "itsm.serviceCatalog.view" - ] - } - } - }, - "/itsm/api/v1/service-form-definition/": { - "post": { - "tags": [ - "ServiceFormDefinition" - ], - "summary": "创建 | [itsm.formDefinition.edit]", - "operationId": "createUsingPOST_39", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/FormDefinitionCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.formDefinition.edit" - ] - } - } - }, - "/itsm/api/v1/service-form-definition/search": { - "post": { - "tags": [ - "ServiceFormDefinition" - ], - "summary": "查询 | [itsm.formDefinition.view]", - "operationId": "pageUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/FormDefinitionSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«FormDefinitionAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "page", - "$permissions": [ - "itsm.formDefinition.view" - ] - } - } - }, - "/itsm/api/v1/service-form-definition/{code}": { - "get": { - "tags": [ - "ServiceFormDefinition" - ], - "summary": "详情,type=edit 则查询操作状态form | [itsm.formDefinition.view]", - "operationId": "infoUsingGET_26", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "code", - "in": "path", - "description": "code", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "type", - "in": "query", - "description": "type", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«FormDefinitionAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.formDefinition.view" - ] - } - } - }, - "/itsm/api/v1/service-form-definition/{id}": { - "put": { - "tags": [ - "ServiceFormDefinition" - ], - "summary": "更新 | [itsm.formDefinition.edit]", - "operationId": "updateUsingPUT_24", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/FormCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.formDefinition.edit" - ] - } - }, - "delete": { - "tags": [ - "ServiceFormDefinition" - ], - "summary": "删除 | [itsm.formDefinition.edit]", - "operationId": "deleteUsingDELETE_37", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.formDefinition.edit" - ] - } - } - }, - "/itsm/api/v1/service-request/audit": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "管理员审批 | [itsm.admin.all]", - "operationId": "auditUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogApprovalCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "audit", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-request/auth/{id}": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "提交审批 | [itsm.admin.all]", - "operationId": "authUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "auth", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-request/batch-search": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "通过ID批量查询 | [itsm.admin.all]", - "operationId": "batchSearchUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«ServiceFavouriteAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchSearch", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-request/bpm-node/info/{catalogId}": { - "get": { - "tags": [ - "Portal Service Request API" - ], - "summary": "查看流程用户任务节点 | [itsm.admin.all]", - "operationId": "getCatalogBpmNodeUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "catalogId", - "in": "path", - "description": "catalogId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«BpmNodeAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getCatalogBpmNode", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-request/catalog/search": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "searchCatalog | [itsm.admin.all]", - "operationId": "searchCatalogUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchCatalog", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-request/detail/{id}": { - "get": { - "tags": [ - "Portal Service Request API" - ], - "summary": "查询详情 | [itsm.admin.all]", - "operationId": "infoUsingGET_27", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceCatalogDetailAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-request/done": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "已审批申请列表 | [itsm.admin.all]", - "operationId": "doneUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogApprovalSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogApprovalAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "done", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-request/my/search": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "查询我的服务(我创建的) | [itsm.admin.all]", - "operationId": "searchMyUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogDetailAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchMy", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-request/save": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "新增基本信息 | [itsm.admin.all]", - "operationId": "saveUsingPOST_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceCatalogAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "save", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-request/to-audit": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "待审服务 | [itsm.admin.all]", - "operationId": "toAuditUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceCatalogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "toAudit", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-request/update": { - "post": { - "tags": [ - "Portal Service Request API" - ], - "summary": "保存基本信息 | [itsm.admin.all]", - "operationId": "updateUsingPOST_10", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/CatalogUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-ticket/all-to-audit": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "所有待审批 | [itsm.admin.all]", - "operationId": "toAuditUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceTicketSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "toAudit", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-ticket/apply": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "申请服务 | [itsm.serviceTicket.create]", - "operationId": "applyUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceTicketCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "apply", - "$permissions": [ - "itsm.serviceTicket.create" - ] - } - } - }, - "/itsm/api/v1/service-ticket/export": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "导出数据 | [itsm.admin.all]", - "operationId": "exportDataFileUsingPOST_4", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceTicketSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "exportDataFile", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/service-ticket/export-ticket-detail": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "导出单据内容和审批流程 | [itsm.serviceTicket.view]", - "operationId": "exportTicketDetailUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketDetailExportSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "exportTicketDetail", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/node/config": { - "get": { - "tags": [ - "ServiceTicket" - ], - "summary": "获取单据当前节点的 表单流程配置 | [itsm.serviceTicket.view]", - "operationId": "findCurNodeFormBpmConfigUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "requestNo", - "in": "query", - "description": "requestNo", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "taskId", - "in": "query", - "description": "taskId", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,NodeConfig»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findCurNodeFormBpmConfig", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/process/cancel": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "取消流程 | [itsm.serviceTicket.view]", - "operationId": "cancelProcessUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProcessCancelReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "cancelProcess", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/process/check-cancel": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "检查是否可以取消流程 | [itsm.serviceTicket.view]", - "operationId": "checkCancelProcessUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BpmCheckCancelForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "checkCancelProcess", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/process/continue": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "继续流程 | [itsm.serviceTicket.view]", - "operationId": "continueProcessUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ProcessContinueReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "continueProcess", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/search": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "service-ticket search | [itsm.serviceTicket.view]", - "operationId": "searchUsingPOST_38", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceTicketSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/task/async": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "task async | [itsm.serviceTicket.view]", - "operationId": "asyncTaskUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "Authorization", - "in": "header", - "description": "Authorization", - "required": true, - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AsyncTaskReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "asyncTask", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/task/async/callback": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "task async callback | [itsm.serviceTicket.view]", - "operationId": "asyncTaskCallbackUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AsyncTaskCallbackReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "asyncTaskCallback", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/task/complete/{requestNo}": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "完成任务 | [itsm.serviceTicket.view]", - "operationId": "completeTaskUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "requestNo", - "in": "path", - "description": "requestNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TaskCompleteReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "completeTask", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/ticket/data/batch-check": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "批量检查已存在数据的单据 | [itsm.serviceTicket.view]", - "operationId": "checkExistDataTicketUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TicketDataExistCheckReq", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«TicketDataExistAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "checkExistDataTicket", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/ticket/data/check": { - "post": { - "tags": [ - "ServiceTicket" - ], - "summary": "检查已存在数据的单据 | [itsm.serviceTicket.view]", - "operationId": "checkExistDataTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketDataExistCheckReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TicketDataExistAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "checkExistDataTicket", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/service-ticket/{requestNo}/detail": { - "get": { - "tags": [ - "ServiceTicket" - ], - "summary": "service-ticket detail | [itsm.serviceTicket.view]", - "operationId": "detailUsingGET_8", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "requestNo", - "in": "path", - "description": "requestNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "curBpmNode", - "in": "query", - "description": "curBpmNode", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "taskId", - "in": "query", - "description": "taskId", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«ServiceTicketAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detail", - "$permissions": [ - "itsm.serviceTicket.view" - ] - } - } - }, - "/itsm/api/v1/sm-slaconfig/list": { - "post": { - "tags": [ - "SmSlaConfig API" - ], - "summary": "sla配置列表-查询 | [itsm.admin.all]", - "operationId": "listUsingPOST_11", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SmSlaConfigSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SmSlaConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "list", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/sm-slaconfig/submit": { - "post": { - "tags": [ - "SmSlaConfig API" - ], - "summary": "新建sla配置 | [itsm.admin.all]", - "operationId": "createUsingPOST_40", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SmSlaConfigCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/sm-slaconfig/{id}/delete": { - "delete": { - "tags": [ - "SmSlaConfig API" - ], - "summary": "删除sla配置 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_38", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/sm-slaconfig/{id}/detail": { - "get": { - "tags": [ - "SmSlaConfig API" - ], - "summary": "配置详情 | [itsm.admin.all]", - "operationId": "detailUsingGET_9", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«SmSlaConfigAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "detail", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/sm-slaconfig/{id}/status/update": { - "put": { - "tags": [ - "SmSlaConfig API" - ], - "summary": "更新配置的状态 | [itsm.admin.all]", - "operationId": "updateSlaStatusUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SmSlaConfigUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updateSlaStatus", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/sm-slaconfig/{id}/update": { - "put": { - "tags": [ - "SmSlaConfig API" - ], - "summary": "更新配置 | [itsm.admin.all]", - "operationId": "updateUsingPUT_25", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SmSlaConfigUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/sm-sla-config-sr/delete": { - "post": { - "tags": [ - "SmSlaConfigSR API" - ], - "summary": "删除sla配置sr关联 | [itsm.slaconfig.delete]", - "operationId": "deleteUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SmSlaConfigSRQueryReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.slaconfig.delete" - ] - } - } - }, - "/itsm/api/v1/sm-sla-config-sr/getSlaPercent/{ticketNo}": { - "get": { - "tags": [ - "SmSlaConfigSR API" - ], - "summary": "计算单据的sla进度百分比 | [itsm.ticket.view]", - "operationId": "getSlaPercentUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«long»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getSlaPercent", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/sm-sla-config-sr/insertUpdate": { - "post": { - "tags": [ - "SmSlaConfigSR API" - ], - "summary": "新增SLA-SR关联 | [itsm.slaconfig.add]", - "operationId": "createUsingPOST_41", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SmSlaConfigSRCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«int»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.slaconfig.add" - ] - } - } - }, - "/itsm/api/v1/sm-sla-config-sr/list": { - "post": { - "tags": [ - "SmSlaConfigSR API" - ], - "summary": "sla配置列表-查询 | [itsm.ticket.view]", - "operationId": "listNoPageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SmSlaConfigSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«SmSlaConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listNoPage", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/sm-sla-config-sr/sla/query": { - "post": { - "tags": [ - "SmSlaConfigSR API" - ], - "summary": "查询SR关联SLA配置 | [itsm.slaconfig.view]", - "operationId": "findUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SmSlaConfigSRQueryReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«SmSlaConfigSRAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "find", - "$permissions": [ - "itsm.slaconfig.view" - ] - } - } - }, - "/itsm/api/v1/sys-config/": { - "put": { - "tags": [ - "Change System Config API" - ], - "summary": "search user log by conditions | [itsm.admin.all]", - "operationId": "updateUsingPUT_26", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SysConfigUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«SysConfigAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "update", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "post": { - "tags": [ - "Change System Config API" - ], - "summary": "search user log by conditions | [itsm.admin.all]", - "operationId": "createUsingPOST_42", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SysConfigCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«SysConfigAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/sys-config/search": { - "post": { - "tags": [ - "Change System Config API" - ], - "summary": "search user log by conditions | [itsm.admin.all]", - "operationId": "searchUsingPOST_39", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SysConfigSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SysConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/sys-config/{id}": { - "delete": { - "tags": [ - "Change System Config API" - ], - "summary": "search user log by conditions | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_39", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SysConfigAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/sys-config/{key}": { - "get": { - "tags": [ - "Change System Config API" - ], - "summary": "[NO SECURE] search user log by conditions", - "operationId": "findByKeyUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "key", - "in": "path", - "description": "key", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findByKey", - "$no_secure": "true" - } - } - }, - "/itsm/api/v1/user-log/search-by-list/{changeId}": { - "post": { - "tags": [ - "Change System User Log API" - ], - "summary": "search by list for user log | [itsm.admin.all, itsm.change.view]", - "operationId": "searchByListUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SysUserLogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«SysUserLogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchByList", - "$permissions": [ - "itsm.admin.all", - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/user-log/search/{changeId}": { - "post": { - "tags": [ - "Change System User Log API" - ], - "summary": "search user log by conditions | [itsm.admin.all, itsm.change.view]", - "operationId": "searchUsingPOST_40", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "changeId", - "in": "path", - "description": "changeId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/SysUserLogSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«SysUserLogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.admin.all", - "itsm.change.view" - ] - } - } - }, - "/itsm/api/v1/template": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "创建模板 | [itsm.admin.all]", - "operationId": "createUsingPOST_43", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "create", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/basic-temp-sync": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "用本地json数据同步到xBuilder | [itsm.admin.all]", - "operationId": "syncBasicTemplateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«object»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "syncBasicTemplate", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/copy-group": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "复制page-group | [itsm.admin.all]", - "operationId": "copyPageGroupUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplatePageGroupCopyReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplatePageAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "copyPageGroup", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/copy/{templateId}": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "复制模板 | [itsm.admin.all]", - "operationId": "copyUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "templateId", - "in": "path", - "description": "templateId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "copy", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/download/{type}": { - "get": { - "tags": [ - "ITSM Template API" - ], - "summary": "下载模板 | [itsm.knowledge.view]", - "operationId": "getTemplateUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "KM_KNOWLEDGE" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getTemplate", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/template/import": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "知识管理-导入知识 | [itsm.knowledge.view]", - "operationId": "importByFileUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«KmCatalogAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "importByFile", - "$permissions": [ - "itsm.knowledge.view" - ] - } - } - }, - "/itsm/api/v1/template/init-template": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "强制初始化模板by module | [itsm.admin.all]", - "operationId": "initTemplateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "forceInitModule", - "in": "query", - "description": "forceInitModule", - "required": true, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "initTemplate", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/list": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "模板列表 | [itsm.template.view]", - "operationId": "enableListUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«TemplateAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "enableList", - "$permissions": [ - "itsm.template.view" - ] - } - } - }, - "/itsm/api/v1/template/page": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "分页查询 | [itsm.admin.all]", - "operationId": "searchUsingPOST_41", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TemplateAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/page-group": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "创建page-group | [itsm.admin.all]", - "operationId": "createPageGroupUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplatePageGroupCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplatePageAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createPageGroup", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/page-group/page": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "分页查询模板下的page group | [itsm.admin.all]", - "operationId": "pageGroupSearchUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplatePageGroupSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TemplatePageAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "pageGroupSearch", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/page-group/{id}": { - "put": { - "tags": [ - "ITSM Template API" - ], - "summary": "更新page-group | [itsm.admin.all]", - "operationId": "updatePageGroupUsingPUT", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplatePageGroupUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplatePageAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updatePageGroup", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "delete": { - "tags": [ - "ITSM Template API" - ], - "summary": "删除page-group | [itsm.admin.all]", - "operationId": "deletePageGroupUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplatePageAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deletePageGroup", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/pageJson/{tempId}": { - "get": { - "tags": [ - "ITSM Template API" - ], - "summary": "导出模板JSON | [itsm.admin.all]", - "operationId": "getPageGroupJsonUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "tempId", - "in": "path", - "description": "tempId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getPageGroupJson", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/publish/{templateId}": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "发布模板 | [itsm.admin.all]", - "operationId": "publishUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "templateId", - "in": "path", - "description": "templateId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "publish", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/set-default/{templateId}": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "设置门户首页(portal专用) | [itsm.admin.all]", - "operationId": "setDefaultUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "templateId", - "in": "path", - "description": "templateId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "setDefault", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/status": { - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "启用/禁用模板 | [itsm.admin.all]", - "operationId": "statusProcessUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplateStatusReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "statusProcess", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/xbuilder/{pageId}": { - "get": { - "tags": [ - "ITSM Template API" - ], - "summary": "获取pageJson数据 | [itsm.admin.all]", - "operationId": "getPageJsonUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pageId", - "in": "path", - "description": "pageId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«object»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getPageJson", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "修改模板数据 | [itsm.admin.all]", - "operationId": "updatePageUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "pageId", - "in": "path", - "description": "pageId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«object»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "updatePage", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/template/{id}": { - "get": { - "tags": [ - "ITSM Template API" - ], - "summary": "模板详情 | [itsm.admin.all]", - "operationId": "infoUsingGET_28", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "post": { - "tags": [ - "ITSM Template API" - ], - "summary": "模板编辑 | [itsm.admin.all]", - "operationId": "editUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TemplateUpdateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "edit", - "$permissions": [ - "itsm.admin.all" - ] - } - }, - "delete": { - "tags": [ - "ITSM Template API" - ], - "summary": "删除模板 | [itsm.admin.all]", - "operationId": "deleteUsingDELETE_40", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TemplateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "delete", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/tenant": { - "post": { - "tags": [ - "Tenant API" - ], - "summary": "创建或更新账户配置 | [itsm.admin.all]", - "operationId": "createOrUpdateUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/AuthenticationCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«AuthenticationAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "createOrUpdate", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/tenant/account/code": { - "get": { - "tags": [ - "Tenant API" - ], - "summary": "服务账号code详情 | [itsm.ticket.view]", - "operationId": "accountCodeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«string»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "accountCode", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/tenant/info": { - "get": { - "tags": [ - "Tenant API" - ], - "summary": "服务账号详情 | [itsm.admin.all]", - "operationId": "infoUsingGET_29", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«AuthenticationAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "info", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/tenant/init": { - "post": { - "tags": [ - "Tenant API" - ], - "summary": "初始化租户数据 | [itsm.admin.all]", - "operationId": "initDataUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "initForce", - "in": "query", - "description": "initForce", - "required": false, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Void»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "initData", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/inc/tenant/department/search": { - "post": { - "tags": [ - "Tenant User API" - ], - "summary": "search | [itsm.incident.add]", - "operationId": "searchUsingPOST_42", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "page", - "required": true, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "size", - "required": true, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/DepartUserSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«UserApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/api/v1/inc/tenant/search": { - "post": { - "tags": [ - "Tenant User API" - ], - "summary": "search | [itsm.incident.add]", - "operationId": "searchUsingPOST_43", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "page", - "required": true, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "size", - "required": true, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserSearchExtForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«UserApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "search", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/api/v1/inc/tenant/search-include-platform": { - "post": { - "tags": [ - "Tenant User API" - ], - "summary": "getAllTenantsIncludPlatform | [itsm.incident.add]", - "operationId": "getAllTenantsIncludPlatformUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "page", - "required": true, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "size", - "required": true, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TenantDisplaySearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TenantDisplayDTO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getAllTenantsIncludPlatform", - "$permissions": [ - "itsm.incident.add" - ] - } - } - }, - "/itsm/api/v1/ticket/activity/add/comment": { - "post": { - "tags": [ - "TicketActivity API" - ], - "summary": "新增单据评论信息|add ticket activity info | [itsm.ticket.add]", - "operationId": "addCommentUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "notifyUsers", - "in": "query", - "description": "notifyUsers", - "required": false, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "isPortal", - "in": "query", - "description": "isPortal", - "required": true, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCommentCreateForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TicketCommentVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addComment", - "$permissions": [ - "itsm.ticket.add" - ] - } - } - }, - "/itsm/api/v1/ticket/activity/file/{ticketType}/{id}": { - "delete": { - "tags": [ - "TicketActivity API" - ], - "summary": "Delete File Api | [itsm.ticket.delete]", - "operationId": "deleteFileUsingDELETE", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "deleteFile", - "$permissions": [ - "itsm.ticket.delete" - ] - } - } - }, - "/itsm/api/v1/ticket/activity/{ticketType}/{id}/download": { - "get": { - "tags": [ - "TicketActivity API" - ], - "summary": "Download file api | [itsm.ticket.download]", - "operationId": "downloadFileUsingGET_8", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "id", - "in": "path", - "description": "id", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "downloadFile", - "$permissions": [ - "itsm.ticket.download" - ] - } - } - }, - "/itsm/api/v1/ticket/activity/{ticketType}/{ticketNo}": { - "get": { - "tags": [ - "TicketActivity API" - ], - "summary": "单据日志信息| ticket activity info | [itsm.ticket.view]", - "operationId": "listActivitiesUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«TicketActivityVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listActivities", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/ticket/activity/{ticketType}/{type}": { - "post": { - "tags": [ - "TicketActivity API" - ], - "summary": "Upload file api | [itsm.ticket.add]", - "operationId": "uploadFileUsingPOST_8", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketType", - "in": "path", - "description": "ticketType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - }, - { - "name": "type", - "in": "path", - "description": "type", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "IMAGE", - "VIDEO" - ] - } - } - ], - "requestBody": { - "content": { - "multipart/form-data": { - "schema": { - "required": [ - "file" - ], - "type": "object", - "properties": { - "file": { - "type": "string", - "description": "file", - "format": "binary", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TicketAttachmentVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "uploadFile", - "$permissions": [ - "itsm.ticket.add" - ] - } - } - }, - "/itsm/api/v1/ticket/my-done": { - "post": { - "tags": [ - "Portal Ticket Approval API" - ], - "summary": "我的经办 | [itsm.ticket.view]", - "operationId": "myDoneUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceTicketSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "myDone", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/ticket/task/batch-complete": { - "post": { - "tags": [ - "Portal Ticket Approval API" - ], - "summary": "完成任务 | [itsm.ticket.view]", - "operationId": "batchCompleteTaskUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BatchApproServiceForm", - "exampleSetFlag": false - } - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "batchCompleteTask", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/ticket/task/complete/{requestNo}": { - "post": { - "tags": [ - "Portal Ticket Approval API" - ], - "summary": "完成任务 | [itsm.ticket.view]", - "operationId": "completeTaskUsingPOST_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "requestNo", - "in": "path", - "description": "requestNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TaskCompleteReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "completeTask", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/ticket/to-audit": { - "post": { - "tags": [ - "Portal Ticket Approval API" - ], - "summary": "待我审批 | [itsm.ticket.view]", - "operationId": "toAuditUsingPOST_3", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/ServiceTicketSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ServiceTicketAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "toAudit", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/ticket/evaluate/add": { - "post": { - "tags": [ - "TicketEvaluate API" - ], - "summary": "用户新增评价|user add ticket evaluate | [itsm.ticket.add]", - "operationId": "addTicketEvaluateUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketEvaluateCreateReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TicketEvaluateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "addTicketEvaluate", - "$permissions": [ - "itsm.ticket.add" - ] - } - } - }, - "/itsm/api/v1/ticket/evaluate/search": { - "post": { - "tags": [ - "TicketEvaluate API" - ], - "summary": "评价列表评价|ticket evaluate page list | [itsm.admin.all]", - "operationId": "ticketEvaluatePageSearchUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketEvaluateSearchReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketEvaluateAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "ticketEvaluatePageSearch", - "$permissions": [ - "itsm.admin.all" - ] - } - } - }, - "/itsm/api/v1/ticket/evaluate/{ticketNo}": { - "get": { - "tags": [ - "TicketEvaluate API" - ], - "summary": "服务评价详情 | [itsm.ticket.view]", - "operationId": "evaluateDetailUsingGET_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "path", - "description": "ticketNo", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«TicketEvaluateAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "evaluateDetail", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/ticket/sla-time": { - "get": { - "tags": [ - "Portal Ticket API" - ], - "summary": "ticket sla percent and left time include response and resolve | [itsm.ticket.view]", - "operationId": "slaTimeUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "query", - "description": "ticketNo", - "required": true, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«SmSlaResponseResolveTimeVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "slaTime", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/ticket/slaPercent": { - "get": { - "tags": [ - "Portal Ticket API" - ], - "summary": "ticket sla percent and left time | [itsm.ticket.view]", - "operationId": "slaPercentUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "ticketNo", - "in": "query", - "description": "ticketNo", - "required": true, - "style": "form", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«Map«string,object»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "slaPercent", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/group/all": { - "get": { - "tags": [ - "ITSM Group User API" - ], - "summary": "get second line group | [itsm.group.view]", - "operationId": "listAllItimGroupUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«UserGroupVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listAllItimGroup", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/group/first-line": { - "get": { - "tags": [ - "ITSM Group User API" - ], - "summary": "get second line group | [itsm.group.view]", - "operationId": "findFirstLineGroupUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«UserGroupApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findFirstLineGroup", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/group/itsm/user": { - "post": { - "tags": [ - "ITSM Group User API" - ], - "summary": "search group user | [itsm.group.view]", - "operationId": "searchUserInItsmUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - { - "name": "filterCurUser", - "in": "query", - "description": "filterCurUser", - "required": false, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserQueryReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«UserApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchUserInItsm", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/group/second-line": { - "get": { - "tags": [ - "ITSM Group User API" - ], - "summary": "get second line group | [itsm.group.view]", - "operationId": "findSecondLineGroupUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«UserGroupApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "deprecated": true, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findSecondLineGroup", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/group/{groupId}/user": { - "get": { - "tags": [ - "ITSM Group User API" - ], - "summary": "list group user | [itsm.group.view]", - "operationId": "listUserByGroupIdUsingGET_1", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "groupId", - "in": "path", - "description": "groupId", - "required": true, - "style": "simple", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "filterCurUser", - "in": "query", - "description": "filterCurUser", - "required": false, - "style": "form", - "schema": { - "type": "boolean", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«UserApiVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "listUserByGroupId", - "$permissions": [ - "itsm.group.view" - ] - } - } - }, - "/itsm/api/v1/user/page": { - "post": { - "tags": [ - "UserInfo API" - ], - "summary": "分页查询itsm业务类型中关联的用户 | [itsm.ticket.view]", - "operationId": "pageUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserQueryReq", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«ItsmUserAO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "page", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/user/user-info": { - "post": { - "tags": [ - "UserInfo API" - ], - "summary": "查询governance用户信息 | [itsm.all.view]", - "operationId": "searchUsersUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "page", - "required": true, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "size", - "in": "query", - "description": "size", - "required": true, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserInfoForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«UserInfoVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchUsers", - "$permissions": [ - "itsm.all.view" - ] - } - } - }, - "/itsm/api/v1/user/user-is-vip": { - "post": { - "tags": [ - "UserInfo API" - ], - "summary": "查询用户是否是vip | [itsm.all.view]", - "operationId": "getUserIsVipUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/UserSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«UserIsVipVO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getUserIsVip", - "$permissions": [ - "itsm.all.view" - ] - } - } - }, - "/itsm/api/v1/user/vip/{itCode}": { - "get": { - "tags": [ - "UserInfo API" - ], - "summary": "查询用户是否是VIP| query user is vip | [itsm.ticket.view]", - "operationId": "isVipUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "itCode", - "in": "path", - "description": "itCode", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«boolean»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "isVip", - "$permissions": [ - "itsm.ticket.view" - ] - } - } - }, - "/itsm/api/v1/user/{itcode}": { - "get": { - "tags": [ - "UserInfo API" - ], - "summary": "查询用户信息 | [itsm.problem.view]", - "operationId": "getUserUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "itcode", - "in": "path", - "description": "itcode", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true - } - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«GovernanceUserAO»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "getUser", - "$permissions": [ - "itsm.problem.view" - ] - } - } - }, - "/itsm/api/v1/work-desk/basic": { - "get": { - "tags": [ - "Work Desk API" - ], - "summary": "basic | [itsm.all.basic]", - "operationId": "basicUsingGET", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "basic", - "$permissions": [ - "itsm.all.basic" - ] - } - } - }, - "/itsm/api/v1/work-desk/my-data/count/type": { - "post": { - "tags": [ - "Work Desk API" - ], - "summary": "查询单据数量 OPEN:待处理 UNASSIGNED:可认领 OVERDUE_ING:即将逾期 OVERDUE:逾期 MY:我创建的 | [itsm.portal.view]", - "operationId": "searchTicketCountUsingPOST_2", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/TicketCountSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«List«TicketCountVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "searchTicketCount", - "$permissions": [ - "itsm.portal.view" - ] - } - } - }, - "/itsm/api/v1/work-desk/my/list/{queryType}": { - "post": { - "tags": [ - "Work Desk API" - ], - "summary": "根据类型查询单据列表 OPEN:待处理 UNASSIGNED:可认领 MY:我创建的 | [itsm.portal.view]", - "operationId": "findMyTicketUsingPOST", - "parameters": [ - { - "name": "Accept-Language", - "in": "header", - "required": false - }, - { - "name": "page", - "in": "query", - "description": "Results page you want to retrieve (1..N)", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "queryType", - "in": "path", - "description": "queryType", - "required": true, - "style": "simple", - "schema": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - { - "name": "size", - "in": "query", - "description": "Number of records per page", - "required": false, - "style": "form", - "schema": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - { - "name": "sort", - "in": "query", - "description": "Sorting criteria in the format: property(,asc|desc). Default sort order is ascending. Multiple sort criteria are supported.", - "required": false, - "style": "pipeDelimited", - "schema": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - ], - "requestBody": { - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BaseTicketSearchForm", - "exampleSetFlag": false - } - } - } - }, - "responses": { - "200": { - "description": "OK", - "content": { - "*/*": { - "schema": { - "$ref": "#/components/schemas/ResultBody«PageResult«TicketVO»»", - "exampleSetFlag": false - } - } - } - } - }, - "security": [ - { - "Authorization": [ - "global" - ] - }, - { - "SERVICE-AUTHENTICATION": [ - "global" - ] - }, - { - "X-Xframe-Transmitted-Auth": [ - "global" - ] - } - ], - "extensions": { - "$name": "findMyTicket", - "$permissions": [ - "itsm.portal.view" - ] - } - } - } - }, - "components": { - "schemas": { - "AdTowerAO": { - "title": "AdTowerAO", - "type": "object", - "properties": { - "id": { - "type": "string", - "exampleSetFlag": true - }, - "level": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgL3Id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgL3Name": { - "type": "string", - "exampleSetFlag": true - }, - "orgL4Id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgL4Name": { - "type": "string", - "exampleSetFlag": true - }, - "orgName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AdTowerSearchReq": { - "title": "AdTowerSearchReq", - "type": "object", - "properties": { - "id": { - "type": "string", - "exampleSetFlag": true - }, - "levels": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgL3Ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "orgL4Ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "tenantId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AdUserBriefAO": { - "title": "AdUserBriefAO", - "type": "object", - "properties": { - "additionalProperties": { - "type": "object", - "exampleSetFlag": true - }, - "company": { - "type": "string", - "exampleSetFlag": true - }, - "companyZh": { - "type": "string", - "exampleSetFlag": true - }, - "displayName": { - "type": "string", - "exampleSetFlag": true - }, - "employeeNumber": { - "type": "string", - "exampleSetFlag": true - }, - "employeeType": { - "type": "string", - "exampleSetFlag": true - }, - "itcode": { - "type": "string", - "exampleSetFlag": true - }, - "mail": { - "type": "string", - "exampleSetFlag": true - }, - "manager": { - "type": "string", - "exampleSetFlag": true - }, - "mobile": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "string", - "exampleSetFlag": true - }, - "orgL2Id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgL2Name": { - "type": "string", - "exampleSetFlag": true - }, - "orgL3Id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgL3Name": { - "type": "string", - "exampleSetFlag": true - }, - "orgL4Id": { - "type": "string", - "exampleSetFlag": true - }, - "orgL4Name": { - "type": "string", - "exampleSetFlag": true - }, - "orgName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AdUserSearchReq": { - "title": "AdUserSearchReq", - "type": "object", - "properties": { - "name": { - "type": "string", - "exampleSetFlag": true - }, - "notesGroup": { - "type": "string", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "tenantId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "towerId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AiaSearchReq": { - "title": "AiaSearchReq", - "type": "object", - "properties": { - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "text": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AiaSimilaryDocReq": { - "title": "AiaSimilaryDocReq", - "type": "object", - "properties": { - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "text": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AnnotatedType": { - "title": "AnnotatedType", - "type": "object", - "properties": { - "annotatedOwnerType": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": true - }, - "annotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "declaredAnnotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "type": { - "$ref": "#/components/schemas/Type", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "Annotation": { - "title": "Annotation", - "type": "object", - "exampleSetFlag": false - }, - "ApprovalWorkflowAO": { - "title": "ApprovalWorkflowAO", - "type": "object", - "properties": { - "approvalComment": { - "type": "string", - "exampleSetFlag": true - }, - "approvalStatus": { - "type": "string", - "exampleSetFlag": true - }, - "approvers": { - "type": "string", - "exampleSetFlag": true - }, - "endAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "processName": { - "type": "string", - "exampleSetFlag": true - }, - "result": { - "type": "string", - "exampleSetFlag": true - }, - "startAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AsyncTaskCallbackReq": { - "title": "AsyncTaskCallbackReq", - "type": "object", - "properties": { - "executionId": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AsyncTaskReq": { - "title": "AsyncTaskReq", - "type": "object", - "properties": { - "awpActionId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "awpActionName": { - "type": "string", - "exampleSetFlag": true - }, - "awpActionToken": { - "type": "string", - "exampleSetFlag": true - }, - "awpAnsibleHostsConfig": { - "type": "string", - "exampleSetFlag": true - }, - "awpAnsibleHostsType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "awpCallbackToken": { - "type": "string", - "exampleSetFlag": true - }, - "awpCallbackUrl": { - "type": "string", - "exampleSetFlag": true - }, - "awpParameterMap": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "awpPlaybookList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "header": { - "type": "object", - "additionalProperties": { - "type": "string", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "messageName": { - "type": "string", - "exampleSetFlag": true - }, - "method": { - "type": "string", - "extensions": { - "$hint$className": "HttpMethod" - }, - "exampleSetFlag": true, - "enum": [ - "DELETE", - "GET", - "HEAD", - "OPTIONS", - "PATCH", - "POST", - "PUT", - "TRACE" - ] - }, - "requestBody": { - "type": "object", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "url": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AttachmentAO": { - "title": "AttachmentAO", - "type": "object", - "properties": { - "commentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "fileKey": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fileType": { - "type": "string", - "exampleSetFlag": true - }, - "fileUrl": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "inid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "s3Type": { - "type": "string", - "extensions": { - "$hint$className": "FileS3Type" - }, - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "IMAGE", - "VIDEO" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AuthenticationAO": { - "title": "AuthenticationAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "value": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AuthenticationCreateReq": { - "title": "AuthenticationCreateReq", - "type": "object", - "properties": { - "value": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "AwpParamMappingReq": { - "title": "AwpParamMappingReq", - "type": "object", - "properties": { - "fieldOptions": { - "type": "object", - "exampleSetFlag": true - }, - "label": { - "type": "string", - "exampleSetFlag": true - }, - "sourceFiled": { - "type": "string", - "exampleSetFlag": true - }, - "targetFiled": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "AutomationParamType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE_FILED", - "CHANGE_FORM_JSON", - "CI_FIELD", - "MANUAL_FILED" - ] - } - }, - "exampleSetFlag": false - }, - "BaseTicketSearchForm": { - "title": "BaseTicketSearchForm", - "type": "object", - "properties": { - "action": { - "type": "string", - "description": "NEXT下一页 PRE上一页", - "extensions": { - "$hint$className": "PageActionType" - }, - "exampleSetFlag": true, - "enum": [ - "NEXT", - "PRE" - ] - }, - "assignGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "hideTime": { - "type": "string", - "description": "隐藏时间参数 下一页时,传列表最后一条记录的 create or update time, 上一页时传列表第一条create or update time", - "format": "date-time", - "exampleSetFlag": true - }, - "isMobile": { - "type": "boolean", - "exampleSetFlag": true - }, - "isTrueScaleAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "description": "模糊查询条件", - "exampleSetFlag": true - }, - "query": { - "type": "string", - "exampleSetFlag": true - }, - "queryType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "secondType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "sortBy": { - "type": "string", - "description": "排序字段 创建时间CREATE_TIME 更新时间 UPDATE_TIME", - "extensions": { - "$hint$className": "SortByType" - }, - "exampleSetFlag": true, - "enum": [ - "CREATE_TIME", - "UPDATE_TIME" - ] - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTimeBegin": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTimeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "totalElements": { - "type": "integer", - "description": "总数 PRE上一页时必传", - "format": "int64", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "description": "单据类型", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - }, - "exampleSetFlag": false - }, - "BatchApproServiceForm": { - "title": "BatchApproServiceForm", - "type": "object", - "properties": { - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "taskCompleteReq": { - "$ref": "#/components/schemas/TaskCompleteReq", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BatchApprovalVO": { - "title": "BatchApprovalVO", - "type": "object", - "properties": { - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approveResult": { - "type": "string", - "extensions": { - "$hint$className": "ApproveResultType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECTED" - ] - }, - "ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "ticketNums": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType4App" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "KNOWLEDGE", - "PROBLEM", - "SERVICE_REQUEST" - ] - }, - "tokenForEmail": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BizCateforySearchReq": { - "title": "BizCateforySearchReq", - "type": "object", - "properties": { - "bizCategoryDefaultId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "departments": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "groupIds": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "groups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "preference": { - "type": "boolean", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "BizCategoryVisilbity" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "COMPANY", - "DEPARTMENT", - "GROUP", - "USER" - ] - }, - "visibilityCompanyList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityDepartmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityGroupList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "BizCategoryAO": { - "title": "BizCategoryAO", - "type": "object", - "properties": { - "children": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryAO", - "exampleSetFlag": false - } - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryCiAO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "groups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryGroupAO", - "exampleSetFlag": false - } - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isLeaf": { - "type": "boolean", - "exampleSetFlag": true - }, - "key": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "level": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "treeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "BizCategoryVisilbity" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "COMPANY", - "DEPARTMENT", - "GROUP", - "USER" - ] - }, - "visibilityDepartmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityGroupList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityTenantInfoVOS": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/GovernanceTenantInfoAO", - "exampleSetFlag": false - } - }, - "visibilityUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "BizCategoryCiAO": { - "title": "BizCategoryCiAO", - "type": "object", - "properties": { - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BizCategoryCiReq": { - "title": "BizCategoryCiReq", - "type": "object", - "properties": { - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BizCategoryCreateReq": { - "title": "BizCategoryCreateReq", - "type": "object", - "properties": { - "categoryGroupCreateFormList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryGroupCreateReq", - "exampleSetFlag": false - } - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryCiReq", - "exampleSetFlag": false - } - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "BizCategoryVisilbity" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "COMPANY", - "DEPARTMENT", - "GROUP", - "USER" - ] - }, - "visibilityCompanyList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityDepartmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityGroupList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "BizCategoryGroupAO": { - "title": "BizCategoryGroupAO", - "type": "object", - "properties": { - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "defaultGroup": { - "type": "boolean", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "treeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BizCategoryGroupCreateReq": { - "title": "BizCategoryGroupCreateReq", - "type": "object", - "properties": { - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BizCategoryListAO": { - "title": "BizCategoryListAO", - "type": "object", - "properties": { - "bizCategoryGroupVOS": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryGroupAO", - "exampleSetFlag": false - } - }, - "groups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "members": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "membersEllipsis": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "parentName": { - "type": "string", - "exampleSetFlag": true - }, - "parentNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "BizCategoryVisilbity" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "COMPANY", - "DEPARTMENT", - "GROUP", - "USER" - ] - }, - "visibilityDepartLis": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/GovernanceDepartMentAO", - "exampleSetFlag": false - } - }, - "visibilityGroupList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/UserGroupAO", - "exampleSetFlag": false - } - }, - "visibilityInfo": { - "type": "string", - "exampleSetFlag": true - }, - "visibilityTenantList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/GovernanceTenantInfoAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "BizCategoryUpdateReq": { - "title": "BizCategoryUpdateReq", - "type": "object", - "properties": { - "categoryGroupCreateFormList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryGroupCreateReq", - "exampleSetFlag": false - } - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryCiReq", - "exampleSetFlag": false - } - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "BizCategoryVisilbity" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "COMPANY", - "DEPARTMENT", - "GROUP", - "USER" - ] - }, - "visibilityCompanyList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityDepartmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityGroupList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "BizGroupSearchReq": { - "title": "BizGroupSearchReq", - "type": "object", - "properties": { - "filterByUser": { - "type": "string", - "exampleSetFlag": true - }, - "sortByUser": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BizSearchReq": { - "title": "BizSearchReq", - "type": "object", - "properties": { - "groupIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "BottomStatisticsAO": { - "title": "BottomStatisticsAO", - "type": "object", - "properties": { - "audioKnowledgeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pictureKnowledgeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "professionalKnowledgeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "solutionKnowledgeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "textKnowledgeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "vocationalKnowledgeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BpmCheckCancelForm": { - "title": "BpmCheckCancelForm", - "required": [ - "requestNo" - ], - "type": "object", - "properties": { - "requestNo": { - "maxLength": 50, - "minLength": 0, - "type": "string", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BpmNodeAO": { - "title": "BpmNodeAO", - "type": "object", - "properties": { - "id": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BpmTaskResultVO": { - "title": "BpmTaskResultVO", - "type": "object", - "properties": { - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "resultComments": { - "type": "string", - "exampleSetFlag": true - }, - "resultType": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ADD", - "APPROVED", - "REJECTED", - "SEND_BACK", - "TRANSFER", - "VETO" - ] - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "taskDefKey": { - "type": "string", - "exampleSetFlag": true - }, - "taskId": { - "type": "string", - "exampleSetFlag": true - }, - "taskName": { - "type": "string", - "exampleSetFlag": true - }, - "taskNameCn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "BusinessGroupAO": { - "title": "BusinessGroupAO", - "type": "object", - "properties": { - "admin": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "GroupType" - }, - "exampleSetFlag": true, - "enum": [ - "AD_GROUP", - "CUSTOM_GROUP" - ] - } - }, - "exampleSetFlag": false - }, - "ByteArrayResource": { - "title": "ByteArrayResource", - "type": "object", - "properties": { - "byteArray": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "file": { - "type": "string", - "format": "binary", - "exampleSetFlag": true - }, - "filename": { - "type": "string", - "exampleSetFlag": true - }, - "inputStream": { - "$ref": "#/components/schemas/InputStream", - "exampleSetFlag": true - }, - "open": { - "type": "boolean", - "exampleSetFlag": true - }, - "readable": { - "type": "boolean", - "exampleSetFlag": true - }, - "uri": { - "type": "string", - "format": "uri", - "exampleSetFlag": true - }, - "url": { - "type": "string", - "format": "url", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CabAO": { - "title": "CabAO", - "type": "object", - "properties": { - "admin": { - "type": "string", - "exampleSetFlag": true - }, - "appId": { - "type": "string", - "exampleSetFlag": true - }, - "appName": { - "type": "string", - "exampleSetFlag": true - }, - "businessGroups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OrganizationGroupAO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "members": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "CabType" - }, - "exampleSetFlag": true, - "enum": [ - "BCAB", - "GCAB", - "STAKEHOLDER", - "TCAB", - "TOWER_LEADER" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CabCreateReq": { - "title": "CabCreateReq", - "type": "object", - "properties": { - "admin": { - "type": "string", - "exampleSetFlag": true - }, - "appId": { - "type": "string", - "exampleSetFlag": true - }, - "businessGroups": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "members": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "CabType" - }, - "exampleSetFlag": true, - "enum": [ - "BCAB", - "GCAB", - "STAKEHOLDER", - "TCAB", - "TOWER_LEADER" - ] - } - }, - "exampleSetFlag": false - }, - "CabSearchReq": { - "title": "CabSearchReq", - "type": "object", - "properties": { - "admin": { - "type": "string", - "exampleSetFlag": true - }, - "appId": { - "type": "string", - "exampleSetFlag": true - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "CabType" - }, - "exampleSetFlag": true, - "enum": [ - "BCAB", - "GCAB", - "STAKEHOLDER", - "TCAB", - "TOWER_LEADER" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CabUpdateReq": { - "title": "CabUpdateReq", - "type": "object", - "properties": { - "admin": { - "type": "string", - "exampleSetFlag": true - }, - "appId": { - "type": "string", - "exampleSetFlag": true - }, - "businessGroups": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "members": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "CabType" - }, - "exampleSetFlag": true, - "enum": [ - "BCAB", - "GCAB", - "STAKEHOLDER", - "TCAB", - "TOWER_LEADER" - ] - } - }, - "exampleSetFlag": false - }, - "CalendarReq": { - "title": "CalendarReq", - "type": "object", - "properties": { - "calendarDateFocus": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "calendarDateType": { - "type": "string", - "extensions": { - "$hint$className": "CalendarDateType" - }, - "exampleSetFlag": true, - "enum": [ - "DAY", - "MONTH", - "WEEK" - ] - } - }, - "exampleSetFlag": false - }, - "CatalogCopyReq": { - "title": "CatalogCopyReq", - "type": "object", - "properties": { - "applyBy": { - "type": "string", - "exampleSetFlag": true - }, - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "delivery": { - "type": "string", - "exampleSetFlag": true - }, - "deliveryMode": { - "type": "string", - "extensions": { - "$hint$className": "DeliveryModeType" - }, - "exampleSetFlag": true, - "enum": [ - "FORM", - "MANUAL" - ] - }, - "imgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isHot": { - "type": "string", - "extensions": { - "$hint$className": "CatalogIsHotType" - }, - "exampleSetFlag": true, - "enum": [ - "HOT", - "NOT_HOT" - ] - }, - "openProductNames": { - "type": "string", - "exampleSetFlag": true - }, - "openType": { - "type": "string", - "extensions": { - "$hint$className": "OpenType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "PART" - ] - }, - "priceDescription": { - "type": "string", - "exampleSetFlag": true - }, - "priceDescriptionCn": { - "type": "string", - "exampleSetFlag": true - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServicePrivilegeCreateReq", - "exampleSetFlag": false - } - }, - "serviceDeliveryTime": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - }, - "serviceSupplierName": { - "type": "string", - "exampleSetFlag": true - }, - "sourceCatalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "VisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "CatalogCreateReq": { - "title": "CatalogCreateReq", - "type": "object", - "properties": { - "applyAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "applyBy": { - "type": "string", - "exampleSetFlag": true - }, - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "delivery": { - "type": "string", - "exampleSetFlag": true - }, - "deliveryMode": { - "type": "string", - "extensions": { - "$hint$className": "DeliveryModeType" - }, - "exampleSetFlag": true, - "enum": [ - "FORM", - "MANUAL" - ] - }, - "imgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isHot": { - "type": "string", - "extensions": { - "$hint$className": "CatalogIsHotType" - }, - "exampleSetFlag": true, - "enum": [ - "HOT", - "NOT_HOT" - ] - }, - "openProductNames": { - "type": "string", - "exampleSetFlag": true - }, - "openType": { - "type": "string", - "extensions": { - "$hint$className": "OpenType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "PART" - ] - }, - "priceDescription": { - "type": "string", - "exampleSetFlag": true - }, - "priceDescriptionCn": { - "type": "string", - "exampleSetFlag": true - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServicePrivilegeCreateReq", - "exampleSetFlag": false - } - }, - "serviceDeliveryTime": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeliveryTimeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - }, - "serviceSupplierName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "subServiceCatalogIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryCn": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "VisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "CatalogDeleteAO": { - "title": "CatalogDeleteAO", - "type": "object", - "properties": { - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "types": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "PERMISSION_ERROR", - "STATUS_ERROR", - "TICKET_ERROR" - ] - } - } - }, - "exampleSetFlag": false - }, - "CatalogForm": { - "title": "CatalogForm", - "type": "object", - "properties": { - "list": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "BUSINESS", - "COMMON", - "SKILL" - ] - } - } - }, - "exampleSetFlag": false - }, - "CatalogNameSearchReq": { - "title": "CatalogNameSearchReq", - "type": "object", - "properties": { - "catalogStatusType": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - }, - "ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CatalogPrivilegeAO": { - "title": "CatalogPrivilegeAO", - "type": "object", - "properties": { - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "role": { - "type": "string", - "extensions": { - "$hint$className": "RoleType" - }, - "exampleSetFlag": true, - "enum": [ - "MEMBER", - "OWNER" - ] - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CatalogPrivilegeCreateReq": { - "title": "CatalogPrivilegeCreateReq", - "type": "object", - "properties": { - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isAdd": { - "type": "boolean", - "exampleSetFlag": true - }, - "role": { - "type": "string", - "extensions": { - "$hint$className": "RoleType" - }, - "exampleSetFlag": true, - "enum": [ - "MEMBER", - "OWNER" - ] - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CatalogPrivilegeSearchReq": { - "title": "CatalogPrivilegeSearchReq", - "type": "object", - "properties": { - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CatalogSearchReq": { - "title": "CatalogSearchReq", - "type": "object", - "properties": { - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "isHot": { - "type": "string", - "extensions": { - "$hint$className": "CatalogIsHotType" - }, - "exampleSetFlag": true, - "enum": [ - "HOT", - "NOT_HOT" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CatalogUpdateReq": { - "title": "CatalogUpdateReq", - "type": "object", - "properties": { - "applyAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "applyBy": { - "type": "string", - "exampleSetFlag": true - }, - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmId": { - "type": "string", - "exampleSetFlag": true - }, - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "delivery": { - "type": "string", - "exampleSetFlag": true - }, - "deliveryMode": { - "type": "string", - "extensions": { - "$hint$className": "DeliveryModeType" - }, - "exampleSetFlag": true, - "enum": [ - "FORM", - "MANUAL" - ] - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isHot": { - "type": "string", - "extensions": { - "$hint$className": "CatalogIsHotType" - }, - "exampleSetFlag": true, - "enum": [ - "HOT", - "NOT_HOT" - ] - }, - "openProductNames": { - "type": "string", - "exampleSetFlag": true - }, - "openType": { - "type": "string", - "extensions": { - "$hint$className": "OpenType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "PART" - ] - }, - "priceDescription": { - "type": "string", - "exampleSetFlag": true - }, - "priceDescriptionCn": { - "type": "string", - "exampleSetFlag": true - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServicePrivilegeCreateReq", - "exampleSetFlag": false - } - }, - "serviceDeliveryTime": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeliveryTimeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - }, - "serviceSupplierName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "subServiceCatalogIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryCn": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "VisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeAO": { - "title": "ChangeAO", - "type": "object", - "properties": { - "actualEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "actualStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "assignees": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "canApprove": { - "type": "boolean", - "exampleSetFlag": true - }, - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "cancelUserId": { - "type": "string", - "exampleSetFlag": true - }, - "changeActionItem": { - "type": "object", - "exampleSetFlag": true - }, - "changeOperationClass": { - "type": "object", - "exampleSetFlag": true - }, - "changeSource": { - "$ref": "#/components/schemas/ChangeSourceAO", - "exampleSetFlag": true - }, - "changeTechnicalDomain": { - "type": "object", - "exampleSetFlag": true - }, - "closeFile": { - "type": "string", - "exampleSetFlag": true - }, - "closeFileList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeFileAO", - "exampleSetFlag": false - } - }, - "closeImplNotes": { - "type": "string", - "exampleSetFlag": true - }, - "closeStatus": { - "type": "string", - "extensions": { - "$hint$className": "CloseStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "REJECTED", - "SUCCESS", - "SUCCESS_WITH_ISSUE" - ] - }, - "closeTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "closeUserId": { - "type": "string", - "exampleSetFlag": true - }, - "closeUserSuggests": { - "type": "string", - "exampleSetFlag": true - }, - "conflicted": { - "type": "boolean", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "currentApprove": { - "type": "string", - "exampleSetFlag": true - }, - "currentApproveType": { - "type": "string", - "extensions": { - "$hint$className": "ApproverType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "BCAB", - "GCAB", - "STAKEHOLDER", - "TCAB", - "TOWER_LEADER" - ] - }, - "downRiskReason": { - "type": "string", - "exampleSetFlag": true - }, - "emailContent": { - "type": "string", - "exampleSetFlag": true - }, - "emailSendCcList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "emailSendToList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "emailSubject": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "formJsonToMap": { - "type": "object", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incidentLevel": { - "type": "string", - "extensions": { - "$hint$className": "IncidentLevel" - }, - "exampleSetFlag": true, - "enum": [ - "P1", - "P2", - "P3", - "P4" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "isTypeUpgraded": { - "type": "boolean", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "exampleSetFlag": true - }, - "motivationType": { - "type": "string", - "extensions": { - "$hint$className": "MotivationType" - }, - "exampleSetFlag": true, - "enum": [ - "BUSINESS_REQUIREMENT", - "FIX_ISSUE", - "INCIDENT_RESOLUTION", - "JIRA_INCIDENT", - "OTHERS", - "PB_INCIDENT", - "PERFORMANCE_OPTIMIZATION", - "PROJECT_REQUIREMENT", - "SECURITY_ISSUE_REPAIR", - "SERVICE_REQUEST", - "WORK_ORDER" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "relateRequestNo": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "sendReleaseEmail": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "srRequestNo": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ChangeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "submitterTower": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "syncToCmdb": { - "type": "boolean", - "exampleSetFlag": true - }, - "taskId": { - "type": "string", - "exampleSetFlag": true - }, - "templateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "templateTitle": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeApplicationAO": { - "title": "ChangeApplicationAO", - "type": "object", - "properties": { - "actualEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "actualStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "appId": { - "type": "string", - "exampleSetFlag": true - }, - "appName": { - "type": "string", - "exampleSetFlag": true - }, - "assignees": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "cancelUserId": { - "type": "string", - "exampleSetFlag": true - }, - "changeSource": { - "$ref": "#/components/schemas/ChangeSourceAO", - "exampleSetFlag": true - }, - "closeFile": { - "type": "string", - "exampleSetFlag": true - }, - "closeImplNotes": { - "type": "string", - "exampleSetFlag": true - }, - "closeStatus": { - "type": "string", - "extensions": { - "$hint$className": "CloseStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "REJECTED", - "SUCCESS", - "SUCCESS_WITH_ISSUE" - ] - }, - "closeTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "closeUserId": { - "type": "string", - "exampleSetFlag": true - }, - "closeUserSuggests": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "conflicted": { - "type": "boolean", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "downRiskReason": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incidentLevel": { - "type": "string", - "extensions": { - "$hint$className": "IncidentLevel" - }, - "exampleSetFlag": true, - "enum": [ - "P1", - "P2", - "P3", - "P4" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "isTypeUpgraded": { - "type": "boolean", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ChangeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "submitterTower": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "templateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "templateTitle": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeApprovalAO": { - "title": "ChangeApprovalAO", - "type": "object", - "properties": { - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "approverType": { - "type": "string", - "extensions": { - "$hint$className": "ApproverType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "BCAB", - "GCAB", - "STAKEHOLDER", - "TCAB", - "TOWER_LEADER" - ] - }, - "cab": { - "type": "string", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "INITIATED", - "REJECTED", - "WAITING_FOR_APPROVAL" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeAprovalReq": { - "title": "ChangeAprovalReq", - "type": "object", - "properties": { - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "INITIATED", - "REJECTED", - "WAITING_FOR_APPROVAL" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeAreaAO": { - "title": "ChangeAreaAO", - "type": "object", - "properties": { - "affectArea": { - "type": "string", - "exampleSetFlag": true - }, - "affectBusiness": { - "type": "boolean", - "exampleSetFlag": true - }, - "affectDepartment": { - "type": "string", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "$ref": "#/components/schemas/JSON", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeAreaReq": { - "title": "ChangeAreaReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "affectArea": { - "type": "string", - "exampleSetFlag": true - }, - "affectBusiness": { - "type": "boolean", - "exampleSetFlag": true - }, - "affectDepartment": { - "type": "string", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeAreaReqReq": { - "title": "ChangeAreaReqReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/MethodReq", - "exampleSetFlag": true - }, - "affectArea": { - "type": "string", - "exampleSetFlag": true - }, - "affectBusiness": { - "type": "boolean", - "exampleSetFlag": true - }, - "affectDepartment": { - "type": "string", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeAreaReqRes": { - "title": "ChangeAreaReqRes", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/MethodRes", - "exampleSetFlag": true - }, - "affectArea": { - "type": "string", - "exampleSetFlag": true - }, - "affectBusiness": { - "type": "boolean", - "exampleSetFlag": true - }, - "affectDepartment": { - "type": "string", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeAutoCreateReq": { - "title": "ChangeAutoCreateReq", - "type": "object", - "properties": { - "assignees": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "attachments": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "ciIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "jiraNo": { - "type": "string", - "exampleSetFlag": true - }, - "jiraUrl": { - "type": "string", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "extensions": { - "$hint$className": "MotivationType" - }, - "exampleSetFlag": true, - "enum": [ - "BUSINESS_REQUIREMENT", - "FIX_ISSUE", - "INCIDENT_RESOLUTION", - "JIRA_INCIDENT", - "OTHERS", - "PB_INCIDENT", - "PERFORMANCE_OPTIMIZATION", - "PROJECT_REQUIREMENT", - "SECURITY_ISSUE_REPAIR", - "SERVICE_REQUEST", - "WORK_ORDER" - ] - }, - "operator": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "templateName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeAutomationAO": { - "title": "ChangeAutomationAO", - "type": "object", - "properties": { - "autoExecution": { - "type": "boolean", - "exampleSetFlag": true - }, - "automationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "automationName": { - "type": "string", - "exampleSetFlag": true - }, - "automationType": { - "type": "string", - "extensions": { - "$hint$className": "AutomationType" - }, - "exampleSetFlag": true, - "enum": [ - "ACTION", - "AUTOMATION_WORK", - "ORCHESTRATION" - ] - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeTemplateAutomationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "executeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "executionResult": { - "type": "boolean", - "exampleSetFlag": true - }, - "executionTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "formJsonToMap": { - "type": "object", - "exampleSetFlag": true - }, - "fromTemplate": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isFromTemplate": { - "type": "boolean", - "exampleSetFlag": true - }, - "params": { - "type": "string", - "exampleSetFlag": true - }, - "planExecutionTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "runOn": { - "type": "string", - "exampleSetFlag": true - }, - "serverList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "AutomationStatus" - }, - "exampleSetFlag": true, - "enum": [ - "EXECUTED", - "EXECUTING", - "WAIT_FOR_EXECUTION" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeAutomationCreateReq": { - "title": "ChangeAutomationCreateReq", - "type": "object", - "properties": { - "autoExecution": { - "type": "boolean", - "exampleSetFlag": true - }, - "automationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "automationType": { - "type": "string", - "extensions": { - "$hint$className": "AutomationType" - }, - "exampleSetFlag": true, - "enum": [ - "ACTION", - "AUTOMATION_WORK", - "ORCHESTRATION" - ] - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "planExecutionTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "userToken": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeAutomationSearchReq": { - "title": "ChangeAutomationSearchReq", - "type": "object", - "properties": { - "autoExecution": { - "type": "boolean", - "exampleSetFlag": true - }, - "automationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "automationName": { - "type": "string", - "exampleSetFlag": true - }, - "automationType": { - "type": "string", - "extensions": { - "$hint$className": "AutomationType" - }, - "exampleSetFlag": true, - "enum": [ - "ACTION", - "AUTOMATION_WORK", - "ORCHESTRATION" - ] - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "runOn": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "AutomationStatus" - }, - "exampleSetFlag": true, - "enum": [ - "EXECUTED", - "EXECUTING", - "WAIT_FOR_EXECUTION" - ] - }, - "typeOfChangeExec": { - "type": "string", - "extensions": { - "$hint$className": "AutomationChangeExecType" - }, - "exampleSetFlag": true, - "enum": [ - "CREATE_ACCOUNT", - "DISABLE_ACCOUNT", - "IMPLEMENT", - "MONITOR", - "RISK_ASSESSMENT", - "ROLLBACK", - "VERIFY" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeAutomationUpdateReq": { - "title": "ChangeAutomationUpdateReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "planExecutionTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeBasicItemAO": { - "title": "ChangeBasicItemAO", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeByAppSearchReq": { - "title": "ChangeByAppSearchReq", - "type": "object", - "properties": { - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCancelReq": { - "title": "ChangeCancelReq", - "type": "object", - "properties": { - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCatalogAO": { - "title": "ChangeCatalogAO", - "type": "object", - "properties": { - "approvalAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approvalStatus": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "INITIATED", - "REJECTED", - "WAITING_FOR_APPROVAL" - ] - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "changeDesc": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "formJsonToMap": { - "type": "object", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "impactAnalysis": { - "type": "string", - "exampleSetFlag": true - }, - "implSolution": { - "type": "string", - "exampleSetFlag": true - }, - "lastRequestId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "processTask": { - "$ref": "#/components/schemas/ProcessTask", - "exampleSetFlag": true - }, - "refChangeNo": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "retireReason": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "DRAFT", - "PUBLISHED", - "REJECTED", - "RETIRED", - "WAITING_FOR_APPROVAL", - "WAITING_FOR_PUBLISH" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "templateIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "tower": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "versionNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCatalogCancelReq": { - "title": "ChangeCatalogCancelReq", - "type": "object", - "properties": { - "cancelReason": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCatalogCreateReq": { - "title": "ChangeCatalogCreateReq", - "type": "object", - "properties": { - "changeDesc": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "impactAnalysis": { - "type": "string", - "exampleSetFlag": true - }, - "implSolution": { - "type": "string", - "exampleSetFlag": true - }, - "refChangeNo": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "tower": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCatalogRetireReq": { - "title": "ChangeCatalogRetireReq", - "type": "object", - "properties": { - "retireReason": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCatalogSearchReq": { - "title": "ChangeCatalogSearchReq", - "type": "object", - "properties": { - "approvalStatus": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "MY_APPROVED", - "MY_SUBMITED", - "PENDING_TO_ME" - ] - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "changeDesc": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "impactAnalysis": { - "type": "string", - "exampleSetFlag": true - }, - "implSolution": { - "type": "string", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "refChangeNo": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "requestNoList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "status": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CANCELLED", - "DRAFT", - "PUBLISHED", - "REJECTED", - "RETIRED", - "WAITING_FOR_APPROVAL", - "WAITING_FOR_PUBLISH" - ] - } - }, - "submitter": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "tower": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCatalogUpdateReq": { - "title": "ChangeCatalogUpdateReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "changeDesc": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "impactAnalysis": { - "type": "string", - "exampleSetFlag": true - }, - "implSolution": { - "type": "string", - "exampleSetFlag": true - }, - "refChangeNo": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "tower": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiAO": { - "title": "ChangeCiAO", - "type": "object", - "properties": { - "awpExecResultUrl": { - "type": "string", - "exampleSetFlag": true - }, - "awpTempAccUrl": { - "type": "string", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciType": { - "type": "string", - "extensions": { - "$hint$className": "CMDBCiType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION", - "APPLICATION_INSTANCE", - "ASSETS", - "BACKUP_CONTENT", - "BACKUP_DEVICE", - "BMS", - "CIRCUIT", - "CLOUD", - "COMPUTER_ROOM", - "CONTAINER_CLUSTER", - "CONTAINER_PROJECT", - "CONTAINER_SERVICE", - "COST_CENTER", - "DATABASE", - "DATACENTER", - "DEVICE_ONBOARD_APPLICATION", - "DOMAIN_NAME", - "ELASTIC_CACHE_CLUSTER", - "EXTERNAL_SERVER", - "FACILITY_AC", - "FACILITY_GENERATOR", - "FACILITY_RACK", - "FACILITY_UPS", - "FILESYSTEM", - "HA_Cluster", - "INTEGRATION_CI", - "IP_SUBNET", - "LEC_COMPANY", - "LEC_CUSTOMER", - "LEC_SYSTEM", - "MICROSERVICECLUSTER", - "MICROSERVICESERVICE", - "MQ_SERVICE", - "NAS_STORAGE", - "NETWORK_DEVICE", - "NETWORK_DEVICE_PORT", - "NETWORK_SITE", - "NETWORK_ZONE", - "OBJECT_STORAGE", - "OS_STORAGE", - "PDU", - "PUBLIC_CLOUD_ACCOUNT", - "PUBLIC_CLOUD_DATABASE", - "PUBLIC_CLOUD_DISK", - "REMEDY_GROUP", - "ROUTE_DOMAIN", - "SERVER", - "SERVER_LOAD_BALANCER", - "SERVICE", - "SOFTWARE", - "SSL", - "STORAGE_DEVICE", - "STORAGE_LUN", - "STORAGE_POOL", - "SW_LICENSE", - "SW_PR", - "USER_INFO", - "VIRTUAL_IP_ADDRESS" - ] - }, - "ciTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "className": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "execData": { - "type": "object", - "exampleSetFlag": true - }, - "execSuccess": { - "type": "boolean", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "formJsonToMap": { - "type": "object", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiColumn": { - "title": "ChangeCiColumn", - "type": "object", - "properties": { - "column": { - "type": "string", - "exampleSetFlag": true - }, - "label": { - "type": "string", - "exampleSetFlag": true - }, - "show": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiExecAO": { - "title": "ChangeCiExecAO", - "type": "object", - "properties": { - "app_name": { - "type": "string", - "exampleSetFlag": true - }, - "changeCiId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "checkNeedMonitor": { - "type": "boolean", - "exampleSetFlag": true - }, - "className": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "executeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "functionality": { - "type": "boolean", - "exampleSetFlag": true - }, - "ipaddress": { - "type": "string", - "exampleSetFlag": true - }, - "monitorJuedgeSuccess": { - "type": "boolean", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "performance": { - "type": "boolean", - "exampleSetFlag": true - }, - "port": { - "type": "string", - "exampleSetFlag": true - }, - "scriptResult": { - "type": "object", - "additionalProperties": { - "type": "string", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "serial_number": { - "type": "string", - "exampleSetFlag": true - }, - "server_IP": { - "type": "string", - "exampleSetFlag": true - }, - "version": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiExecHisAO": { - "title": "ChangeCiExecHisAO", - "type": "object", - "properties": { - "automationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "awpExecutionId": { - "type": "string", - "exampleSetFlag": true - }, - "callBackData": { - "type": "string", - "exampleSetFlag": true - }, - "changeAutomationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeTemplateAutomationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "executeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiExecReq": { - "title": "ChangeCiExecReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiExecSearchReq": { - "title": "ChangeCiExecSearchReq", - "type": "object", - "properties": { - "beChecked": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "canAddMonitor": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeCiIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "changeCiStep": { - "type": "string", - "extensions": { - "$hint$className": "ChangeCiStep" - }, - "exampleSetFlag": true, - "enum": [ - "FIFTH_STEP", - "FOURTH_STEP" - ] - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "ChangeCiRelationAO": { - "title": "ChangeCiRelationAO", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciType": { - "type": "string", - "extensions": { - "$hint$className": "CMDBCiType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION", - "APPLICATION_INSTANCE", - "ASSETS", - "BACKUP_CONTENT", - "BACKUP_DEVICE", - "BMS", - "CIRCUIT", - "CLOUD", - "COMPUTER_ROOM", - "CONTAINER_CLUSTER", - "CONTAINER_PROJECT", - "CONTAINER_SERVICE", - "COST_CENTER", - "DATABASE", - "DATACENTER", - "DEVICE_ONBOARD_APPLICATION", - "DOMAIN_NAME", - "ELASTIC_CACHE_CLUSTER", - "EXTERNAL_SERVER", - "FACILITY_AC", - "FACILITY_GENERATOR", - "FACILITY_RACK", - "FACILITY_UPS", - "FILESYSTEM", - "HA_Cluster", - "INTEGRATION_CI", - "IP_SUBNET", - "LEC_COMPANY", - "LEC_CUSTOMER", - "LEC_SYSTEM", - "MICROSERVICECLUSTER", - "MICROSERVICESERVICE", - "MQ_SERVICE", - "NAS_STORAGE", - "NETWORK_DEVICE", - "NETWORK_DEVICE_PORT", - "NETWORK_SITE", - "NETWORK_ZONE", - "OBJECT_STORAGE", - "OS_STORAGE", - "PDU", - "PUBLIC_CLOUD_ACCOUNT", - "PUBLIC_CLOUD_DATABASE", - "PUBLIC_CLOUD_DISK", - "REMEDY_GROUP", - "ROUTE_DOMAIN", - "SERVER", - "SERVER_LOAD_BALANCER", - "SERVICE", - "SOFTWARE", - "SSL", - "STORAGE_DEVICE", - "STORAGE_LUN", - "STORAGE_POOL", - "SW_LICENSE", - "SW_PR", - "USER_INFO", - "VIRTUAL_IP_ADDRESS" - ] - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "formJsonToMap": { - "type": "object", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiRelationReq": { - "title": "ChangeCiRelationReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiReplenishAO": { - "title": "ChangeCiReplenishAO", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciType": { - "type": "string", - "extensions": { - "$hint$className": "CMDBCiType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION", - "APPLICATION_INSTANCE", - "ASSETS", - "BACKUP_CONTENT", - "BACKUP_DEVICE", - "BMS", - "CIRCUIT", - "CLOUD", - "COMPUTER_ROOM", - "CONTAINER_CLUSTER", - "CONTAINER_PROJECT", - "CONTAINER_SERVICE", - "COST_CENTER", - "DATABASE", - "DATACENTER", - "DEVICE_ONBOARD_APPLICATION", - "DOMAIN_NAME", - "ELASTIC_CACHE_CLUSTER", - "EXTERNAL_SERVER", - "FACILITY_AC", - "FACILITY_GENERATOR", - "FACILITY_RACK", - "FACILITY_UPS", - "FILESYSTEM", - "HA_Cluster", - "INTEGRATION_CI", - "IP_SUBNET", - "LEC_COMPANY", - "LEC_CUSTOMER", - "LEC_SYSTEM", - "MICROSERVICECLUSTER", - "MICROSERVICESERVICE", - "MQ_SERVICE", - "NAS_STORAGE", - "NETWORK_DEVICE", - "NETWORK_DEVICE_PORT", - "NETWORK_SITE", - "NETWORK_ZONE", - "OBJECT_STORAGE", - "OS_STORAGE", - "PDU", - "PUBLIC_CLOUD_ACCOUNT", - "PUBLIC_CLOUD_DATABASE", - "PUBLIC_CLOUD_DISK", - "REMEDY_GROUP", - "ROUTE_DOMAIN", - "SERVER", - "SERVER_LOAD_BALANCER", - "SERVICE", - "SOFTWARE", - "SSL", - "STORAGE_DEVICE", - "STORAGE_LUN", - "STORAGE_POOL", - "SW_LICENSE", - "SW_PR", - "USER_INFO", - "VIRTUAL_IP_ADDRESS" - ] - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "formJsonToMap": { - "type": "object", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiReplenishReq": { - "title": "ChangeCiReplenishReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiReplenishSearchReq": { - "title": "ChangeCiReplenishSearchReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiReq": { - "title": "ChangeCiReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiSearchReq": { - "title": "ChangeCiSearchReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "dataJson": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiSyncItemAO": { - "title": "ChangeCiSyncItemAO", - "type": "object", - "properties": { - "ciLabel": { - "type": "string", - "exampleSetFlag": true - }, - "ciTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "ciTypeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fieldSyncInfos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiSyncItemFormCiFieldSyncInfo", - "exampleSetFlag": false - } - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CiSyncStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "INIT", - "SUCCESS" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeCiSyncItemFormCiFieldSyncInfo": { - "title": "ChangeCiSyncItemFormCiFieldSyncInfo", - "type": "object", - "properties": { - "columnLabel": { - "type": "string", - "exampleSetFlag": true - }, - "columnLabelCn": { - "type": "string", - "exampleSetFlag": true - }, - "columnName": { - "type": "string", - "exampleSetFlag": true - }, - "oldValue": { - "type": "object", - "exampleSetFlag": true - }, - "value": { - "type": "object", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiSyncItemReq": { - "title": "ChangeCiSyncItemReq", - "type": "object", - "properties": { - "ciLabel": { - "type": "string", - "exampleSetFlag": true - }, - "ciTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "ciTypeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fieldSyncInfos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiSyncItemFormCiFieldSyncInfo", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "ChangeCiTypeName": { - "title": "ChangeCiTypeName", - "type": "object", - "properties": { - "citypeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "label": { - "type": "string", - "exampleSetFlag": true - }, - "label_cn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCiUpdateReq": { - "title": "ChangeCiUpdateReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "functionality": { - "type": "boolean", - "exampleSetFlag": true - }, - "performance": { - "type": "boolean", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCloseReq": { - "title": "ChangeCloseReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "actualEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "actualStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "closeImplNotes": { - "type": "string", - "exampleSetFlag": true - }, - "closeStatus": { - "type": "string", - "extensions": { - "$hint$className": "CloseStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "REJECTED", - "SUCCESS", - "SUCCESS_WITH_ISSUE" - ] - }, - "closeUserSuggests": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCommentAO": { - "title": "ChangeCommentAO", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "file": { - "type": "string", - "exampleSetFlag": true - }, - "files": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeFileAO", - "exampleSetFlag": false - } - }, - "hasAttachment": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCommentCreateReq": { - "title": "ChangeCommentCreateReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "file": { - "type": "string", - "exampleSetFlag": true - }, - "hasAttachment": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCommentSearchReq": { - "title": "ChangeCommentSearchReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "hasAttachment": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCoordinationAutoNotifyReq": { - "title": "ChangeCoordinationAutoNotifyReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "autoNotify": { - "type": "boolean", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCoordinationCreateReq": { - "title": "ChangeCoordinationCreateReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCoordinationFeedbackReportAO": { - "title": "ChangeCoordinationFeedbackReportAO", - "type": "object", - "properties": { - "loginUserFeedback": { - "type": "string", - "extensions": { - "$hint$className": "UserFeedbackStatus" - }, - "exampleSetFlag": true, - "enum": [ - "AGREED", - "CONCERNED", - "NO_FEEDBACK" - ] - }, - "overall": { - "type": "object", - "additionalProperties": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - }, - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCoordinationFeedbackReq": { - "title": "ChangeCoordinationFeedbackReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "feedbackComment": { - "type": "string", - "exampleSetFlag": true - }, - "feedbackStatus": { - "type": "string", - "extensions": { - "$hint$className": "UserFeedbackStatus" - }, - "exampleSetFlag": true, - "enum": [ - "AGREED", - "CONCERNED", - "NO_FEEDBACK" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeCoordinationNotifyReq": { - "title": "ChangeCoordinationNotifyReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "ChangeCoordinationSearchReq": { - "title": "ChangeCoordinationSearchReq", - "type": "object", - "properties": { - "autoNotify": { - "type": "boolean", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "feedbackComment": { - "type": "string", - "exampleSetFlag": true - }, - "feedbackStatus": { - "type": "string", - "extensions": { - "$hint$className": "UserFeedbackStatus" - }, - "exampleSetFlag": true, - "enum": [ - "AGREED", - "CONCERNED", - "NO_FEEDBACK" - ] - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CoordinationNotifyStatus" - }, - "exampleSetFlag": true, - "enum": [ - "INITIAL", - "NOTIFIED" - ] - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCoordinationUserAO": { - "title": "ChangeCoordinationUserAO", - "type": "object", - "properties": { - "autoNotify": { - "type": "boolean", - "exampleSetFlag": true - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "feedbackComment": { - "type": "string", - "exampleSetFlag": true - }, - "feedbackStatus": { - "type": "string", - "extensions": { - "$hint$className": "UserFeedbackStatus" - }, - "exampleSetFlag": true, - "enum": [ - "AGREED", - "CONCERNED", - "NO_FEEDBACK" - ] - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "notifyStatus": { - "type": "string", - "extensions": { - "$hint$className": "CoordinationNotifyStatus" - }, - "exampleSetFlag": true, - "enum": [ - "INITIAL", - "NOTIFIED" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - }, - "userType": { - "type": "string", - "extensions": { - "$hint$className": "CoordinationUserType" - }, - "exampleSetFlag": true, - "enum": [ - "CI_OWNER", - "CUSTOM_USER" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeCopyReq": { - "title": "ChangeCopyReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCreateReqReq": { - "title": "ChangeCreateReqReq", - "type": "object", - "properties": { - "area": { - "$ref": "#/components/schemas/ChangeAreaReqReq", - "exampleSetFlag": true - }, - "assignees": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "changeActionItem": { - "type": "string", - "exampleSetFlag": true - }, - "changeCopy": { - "type": "boolean", - "exampleSetFlag": true - }, - "changeOperationClass": { - "type": "string", - "exampleSetFlag": true - }, - "changeSource": { - "$ref": "#/components/schemas/ChangeSourceReq", - "exampleSetFlag": true - }, - "changeTechnicalDomain": { - "type": "string", - "exampleSetFlag": true - }, - "ciIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "ciType": { - "type": "string", - "extensions": { - "$hint$className": "CMDBCiType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION", - "APPLICATION_INSTANCE", - "ASSETS", - "BACKUP_CONTENT", - "BACKUP_DEVICE", - "BMS", - "CIRCUIT", - "CLOUD", - "COMPUTER_ROOM", - "CONTAINER_CLUSTER", - "CONTAINER_PROJECT", - "CONTAINER_SERVICE", - "COST_CENTER", - "DATABASE", - "DATACENTER", - "DEVICE_ONBOARD_APPLICATION", - "DOMAIN_NAME", - "ELASTIC_CACHE_CLUSTER", - "EXTERNAL_SERVER", - "FACILITY_AC", - "FACILITY_GENERATOR", - "FACILITY_RACK", - "FACILITY_UPS", - "FILESYSTEM", - "HA_Cluster", - "INTEGRATION_CI", - "IP_SUBNET", - "LEC_COMPANY", - "LEC_CUSTOMER", - "LEC_SYSTEM", - "MICROSERVICECLUSTER", - "MICROSERVICESERVICE", - "MQ_SERVICE", - "NAS_STORAGE", - "NETWORK_DEVICE", - "NETWORK_DEVICE_PORT", - "NETWORK_SITE", - "NETWORK_ZONE", - "OBJECT_STORAGE", - "OS_STORAGE", - "PDU", - "PUBLIC_CLOUD_ACCOUNT", - "PUBLIC_CLOUD_DATABASE", - "PUBLIC_CLOUD_DISK", - "REMEDY_GROUP", - "ROUTE_DOMAIN", - "SERVER", - "SERVER_LOAD_BALANCER", - "SERVICE", - "SOFTWARE", - "SSL", - "STORAGE_DEVICE", - "STORAGE_LUN", - "STORAGE_POOL", - "SW_LICENSE", - "SW_PR", - "USER_INFO", - "VIRTUAL_IP_ADDRESS" - ] - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "incidentLevel": { - "type": "string", - "extensions": { - "$hint$className": "IncidentLevel" - }, - "exampleSetFlag": true, - "enum": [ - "P1", - "P2", - "P3", - "P4" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "exampleSetFlag": true - }, - "plan": { - "$ref": "#/components/schemas/ChangePlanReqReq", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "relateRequestNo": { - "type": "string", - "exampleSetFlag": true - }, - "relateTaskDefKey": { - "type": "string", - "exampleSetFlag": true - }, - "relateTaskId": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "templateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - }, - "typeUpgraded": { - "type": "boolean", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeCreateReqRes": { - "title": "ChangeCreateReqRes", - "type": "object", - "properties": { - "area": { - "$ref": "#/components/schemas/ChangeAreaReqRes", - "exampleSetFlag": true - }, - "assignees": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "changeActionItem": { - "type": "string", - "exampleSetFlag": true - }, - "changeCopy": { - "type": "boolean", - "exampleSetFlag": true - }, - "changeOperationClass": { - "type": "string", - "exampleSetFlag": true - }, - "changeSource": { - "$ref": "#/components/schemas/ChangeSourceReq", - "exampleSetFlag": true - }, - "changeTechnicalDomain": { - "type": "string", - "exampleSetFlag": true - }, - "ciIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "ciType": { - "type": "string", - "extensions": { - "$hint$className": "CMDBCiType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION", - "APPLICATION_INSTANCE", - "ASSETS", - "BACKUP_CONTENT", - "BACKUP_DEVICE", - "BMS", - "CIRCUIT", - "CLOUD", - "COMPUTER_ROOM", - "CONTAINER_CLUSTER", - "CONTAINER_PROJECT", - "CONTAINER_SERVICE", - "COST_CENTER", - "DATABASE", - "DATACENTER", - "DEVICE_ONBOARD_APPLICATION", - "DOMAIN_NAME", - "ELASTIC_CACHE_CLUSTER", - "EXTERNAL_SERVER", - "FACILITY_AC", - "FACILITY_GENERATOR", - "FACILITY_RACK", - "FACILITY_UPS", - "FILESYSTEM", - "HA_Cluster", - "INTEGRATION_CI", - "IP_SUBNET", - "LEC_COMPANY", - "LEC_CUSTOMER", - "LEC_SYSTEM", - "MICROSERVICECLUSTER", - "MICROSERVICESERVICE", - "MQ_SERVICE", - "NAS_STORAGE", - "NETWORK_DEVICE", - "NETWORK_DEVICE_PORT", - "NETWORK_SITE", - "NETWORK_ZONE", - "OBJECT_STORAGE", - "OS_STORAGE", - "PDU", - "PUBLIC_CLOUD_ACCOUNT", - "PUBLIC_CLOUD_DATABASE", - "PUBLIC_CLOUD_DISK", - "REMEDY_GROUP", - "ROUTE_DOMAIN", - "SERVER", - "SERVER_LOAD_BALANCER", - "SERVICE", - "SOFTWARE", - "SSL", - "STORAGE_DEVICE", - "STORAGE_LUN", - "STORAGE_POOL", - "SW_LICENSE", - "SW_PR", - "USER_INFO", - "VIRTUAL_IP_ADDRESS" - ] - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "incidentLevel": { - "type": "string", - "extensions": { - "$hint$className": "IncidentLevel" - }, - "exampleSetFlag": true, - "enum": [ - "P1", - "P2", - "P3", - "P4" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "exampleSetFlag": true - }, - "plan": { - "$ref": "#/components/schemas/ChangePlanReqRes", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "relateRequestNo": { - "type": "string", - "exampleSetFlag": true - }, - "relateTaskDefKey": { - "type": "string", - "exampleSetFlag": true - }, - "relateTaskId": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "templateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - }, - "typeUpgraded": { - "type": "boolean", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeExportSearchReq": { - "title": "ChangeExportSearchReq", - "type": "object", - "properties": { - "actualEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "actualStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "appCiId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "approvalStatus": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "MY_APPROVED", - "MY_SUBMITED", - "PENDING_TO_ME" - ] - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "calendarForm": { - "$ref": "#/components/schemas/CalendarReq", - "exampleSetFlag": true - }, - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "closeStatus": { - "type": "string", - "extensions": { - "$hint$className": "CloseStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "REJECTED", - "SUCCESS", - "SUCCESS_WITH_ISSUE" - ] - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "endCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "exportAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "incidentLevel": { - "type": "string", - "extensions": { - "$hint$className": "IncidentLevel" - }, - "exampleSetFlag": true, - "enum": [ - "P1", - "P2", - "P3", - "P4" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "isCritical": { - "type": "boolean", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "exampleSetFlag": true - }, - "motivationList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "motivations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "outageId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "pageQueryType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planEndDateEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planEndDateStart": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "relateCiId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - "riskSingle": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "startCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - } - }, - "submitter": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "submitterSingle": { - "type": "string", - "exampleSetFlag": true - }, - "submitterTower": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "syncCiId": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - } - }, - "types": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeFileAO": { - "title": "ChangeFileAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fileType": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "$ref": "#/components/schemas/JSON", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "s3Key": { - "type": "string", - "exampleSetFlag": true - }, - "s3Url": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangePlanAO": { - "title": "ChangePlanAO", - "type": "object", - "properties": { - "addMonitor": { - "type": "string", - "extensions": { - "$hint$className": "AddMonitorType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO_ADD", - "NOT_NEED" - ] - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "file": { - "type": "string", - "exampleSetFlag": true - }, - "filesMap": { - "type": "object", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "formJsonToMap": { - "type": "object", - "exampleSetFlag": true - }, - "hasRollbackPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "implPlan": { - "type": "string", - "exampleSetFlag": true - }, - "implPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "outageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "outageRequired": { - "type": "boolean", - "exampleSetFlag": true - }, - "rollbackPlanComment": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackType": { - "type": "string", - "extensions": { - "$hint$className": "RollbackType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "NEED", - "NOT_NEED" - ] - }, - "testResultComment": { - "type": "string", - "exampleSetFlag": true - }, - "testResultFile": { - "type": "string", - "exampleSetFlag": true - }, - "testResultType": { - "type": "string", - "extensions": { - "$hint$className": "TestResultType" - }, - "exampleSetFlag": true, - "enum": [ - "BAU_CHANGE", - "NO_TEST_ENV", - "PASSED", - "TEST_MACHINE" - ] - }, - "validationPlan": { - "type": "string", - "exampleSetFlag": true - }, - "validationPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "validationType": { - "type": "string", - "extensions": { - "$hint$className": "ValidationType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "MANUAL" - ] - }, - "window": { - "$ref": "#/components/schemas/WindowAO", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangePlanReq": { - "title": "ChangePlanReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "addMonitor": { - "type": "string", - "extensions": { - "$hint$className": "AddMonitorType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO_ADD", - "NOT_NEED" - ] - }, - "file": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "hasRollbackPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "implPlan": { - "type": "string", - "exampleSetFlag": true - }, - "implPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "outageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "outageRequired": { - "type": "boolean", - "exampleSetFlag": true - }, - "rollbackPlanComment": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackType": { - "type": "string", - "extensions": { - "$hint$className": "RollbackType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "NEED", - "NOT_NEED" - ] - }, - "testResultComment": { - "type": "string", - "exampleSetFlag": true - }, - "testResultFile": { - "type": "string", - "exampleSetFlag": true - }, - "testResultType": { - "type": "string", - "extensions": { - "$hint$className": "TestResultType" - }, - "exampleSetFlag": true, - "enum": [ - "BAU_CHANGE", - "NO_TEST_ENV", - "PASSED", - "TEST_MACHINE" - ] - }, - "validationPlan": { - "type": "string", - "exampleSetFlag": true - }, - "validationPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "validationType": { - "type": "string", - "extensions": { - "$hint$className": "ValidationType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "MANUAL" - ] - } - }, - "exampleSetFlag": false - }, - "ChangePlanReqReq": { - "title": "ChangePlanReqReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/MethodReq", - "exampleSetFlag": true - }, - "addMonitor": { - "type": "string", - "extensions": { - "$hint$className": "AddMonitorType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO_ADD", - "NOT_NEED" - ] - }, - "file": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "hasRollbackPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "implPlan": { - "type": "string", - "exampleSetFlag": true - }, - "implPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "outageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "outageRequired": { - "type": "boolean", - "exampleSetFlag": true - }, - "rollbackPlanComment": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackType": { - "type": "string", - "extensions": { - "$hint$className": "RollbackType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "NEED", - "NOT_NEED" - ] - }, - "testResultComment": { - "type": "string", - "exampleSetFlag": true - }, - "testResultFile": { - "type": "string", - "exampleSetFlag": true - }, - "testResultType": { - "type": "string", - "extensions": { - "$hint$className": "TestResultType" - }, - "exampleSetFlag": true, - "enum": [ - "BAU_CHANGE", - "NO_TEST_ENV", - "PASSED", - "TEST_MACHINE" - ] - }, - "validationPlan": { - "type": "string", - "exampleSetFlag": true - }, - "validationPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "validationType": { - "type": "string", - "extensions": { - "$hint$className": "ValidationType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "MANUAL" - ] - } - }, - "exampleSetFlag": false - }, - "ChangePlanReqRes": { - "title": "ChangePlanReqRes", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/MethodRes", - "exampleSetFlag": true - }, - "addMonitor": { - "type": "string", - "extensions": { - "$hint$className": "AddMonitorType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO_ADD", - "NOT_NEED" - ] - }, - "file": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "hasRollbackPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "implPlan": { - "type": "string", - "exampleSetFlag": true - }, - "implPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "outageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "outageRequired": { - "type": "boolean", - "exampleSetFlag": true - }, - "rollbackPlanComment": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackType": { - "type": "string", - "extensions": { - "$hint$className": "RollbackType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "NEED", - "NOT_NEED" - ] - }, - "testResultComment": { - "type": "string", - "exampleSetFlag": true - }, - "testResultFile": { - "type": "string", - "exampleSetFlag": true - }, - "testResultType": { - "type": "string", - "extensions": { - "$hint$className": "TestResultType" - }, - "exampleSetFlag": true, - "enum": [ - "BAU_CHANGE", - "NO_TEST_ENV", - "PASSED", - "TEST_MACHINE" - ] - }, - "validationPlan": { - "type": "string", - "exampleSetFlag": true - }, - "validationPlanFile": { - "type": "string", - "exampleSetFlag": true - }, - "validationType": { - "type": "string", - "extensions": { - "$hint$className": "ValidationType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "MANUAL" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeRecordAO": { - "title": "ChangeRecordAO", - "type": "object", - "properties": { - "actualEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "actualStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approvalAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approvalStatus": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "INITIATED", - "REJECTED", - "WAITING_FOR_APPROVAL" - ] - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "assignees": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "assigneesStr": { - "type": "string", - "exampleSetFlag": true - }, - "canUrge": { - "type": "boolean", - "exampleSetFlag": true - }, - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "catalog": { - "$ref": "#/components/schemas/ChangeCatalogAO", - "exampleSetFlag": true - }, - "changeSource": { - "$ref": "#/components/schemas/ChangeSourceAO", - "exampleSetFlag": true - }, - "closeStatus": { - "type": "string", - "extensions": { - "$hint$className": "CloseStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "REJECTED", - "SUCCESS", - "SUCCESS_WITH_ISSUE" - ] - }, - "closeStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "closeUserId": { - "type": "string", - "exampleSetFlag": true - }, - "conflicted": { - "type": "boolean", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "currentApprove": { - "type": "string", - "exampleSetFlag": true - }, - "downRiskReason": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "impactArea": { - "type": "string", - "exampleSetFlag": true - }, - "incidentLevel": { - "type": "string", - "extensions": { - "$hint$className": "IncidentLevel" - }, - "exampleSetFlag": true, - "enum": [ - "P1", - "P2", - "P3", - "P4" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "lastUrgeTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "exampleSetFlag": true - }, - "motivationCn": { - "type": "string", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "processTask": { - "$ref": "#/components/schemas/ProcessTask", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "riskCn": { - "type": "string", - "exampleSetFlag": true - }, - "srRequestNo": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ChangeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "submitterTower": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - }, - "typeCn": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "vip": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoV2Type" - }, - "exampleSetFlag": true, - "enum": [ - "NO", - "YES" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeSceneAO": { - "title": "ChangeSceneAO", - "type": "object", - "properties": { - "children": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeSceneAO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "key": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeSceneCreateReq": { - "title": "ChangeSceneCreateReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeSceneSearchReq": { - "title": "ChangeSceneSearchReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeSceneTempAO": { - "title": "ChangeSceneTempAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sceneId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "templateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeSearchReq": { - "title": "ChangeSearchReq", - "type": "object", - "properties": { - "actualEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "actualStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "appCiId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "approvalStatus": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "MY_APPROVED", - "MY_SUBMITED", - "PENDING_TO_ME" - ] - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "calendarForm": { - "$ref": "#/components/schemas/CalendarReq", - "exampleSetFlag": true - }, - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "closeStatus": { - "type": "string", - "extensions": { - "$hint$className": "CloseStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "REJECTED", - "SUCCESS", - "SUCCESS_WITH_ISSUE" - ] - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "endCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "incidentLevel": { - "type": "string", - "extensions": { - "$hint$className": "IncidentLevel" - }, - "exampleSetFlag": true, - "enum": [ - "P1", - "P2", - "P3", - "P4" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "isCritical": { - "type": "boolean", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "exampleSetFlag": true - }, - "motivationList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "motivations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "outageId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "pageQueryType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planEndDateEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planEndDateStart": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "query": { - "type": "string", - "exampleSetFlag": true - }, - "relateCiId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - "riskSingle": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "startCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - } - }, - "submitter": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "submitterSingle": { - "type": "string", - "exampleSetFlag": true - }, - "submitterTower": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "syncCiId": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - } - }, - "types": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeSourceAO": { - "title": "ChangeSourceAO", - "type": "object", - "properties": { - "issueLink": { - "type": "string", - "exampleSetFlag": true - }, - "sourceName": { - "type": "string", - "exampleSetFlag": true - }, - "sourceNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeSourceReq": { - "title": "ChangeSourceReq", - "type": "object", - "properties": { - "issueLink": { - "type": "string", - "exampleSetFlag": true - }, - "sourceName": { - "type": "string", - "exampleSetFlag": true - }, - "sourceNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeStatusReportAO": { - "title": "ChangeStatusReportAO", - "type": "object", - "properties": { - "changeCount": { - "type": "object", - "additionalProperties": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "changes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "ChangeStatusReportReq": { - "title": "ChangeStatusReportReq", - "type": "object", - "properties": { - "changeStatus": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - } - }, - "days": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateAO": { - "title": "ChangeTemplateAO", - "type": "object", - "properties": { - "addMonitor": { - "type": "string", - "extensions": { - "$hint$className": "AddMonitorType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO_ADD", - "NOT_NEED" - ] - }, - "automations": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "automatons": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeTemplateAutomationAO", - "exampleSetFlag": false - } - }, - "changeCatalog": { - "$ref": "#/components/schemas/ChangeCatalogAO", - "exampleSetFlag": true - }, - "changeSceneId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeSceneTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "changeTemplateSceneDetailVOS": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeTemplateSceneDetailAO", - "exampleSetFlag": false - } - }, - "changeType": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - }, - "ciItems": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeTemplateCiItemAO", - "exampleSetFlag": false - } - }, - "ciTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "commonRiskEnable": { - "type": "boolean", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "file": { - "type": "string", - "exampleSetFlag": true - }, - "files": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeFileAO", - "exampleSetFlag": false - } - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "formJsonToMap": { - "type": "object", - "exampleSetFlag": true - }, - "hasRollbackPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "implPlan": { - "type": "string", - "exampleSetFlag": true - }, - "isRelated": { - "type": "boolean", - "exampleSetFlag": true - }, - "lastTemplateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "outageRequired": { - "type": "boolean", - "exampleSetFlag": true - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "ownerTower": { - "type": "string", - "exampleSetFlag": true - }, - "preDefWindow": { - "type": "string", - "extensions": { - "$hint$className": "PreDefWindowType" - }, - "exampleSetFlag": true, - "enum": [ - "NON_FROZEN", - "ON_DEMAND", - "WEEKEND" - ] - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "retireReason": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "rollbackPlan": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackType": { - "type": "string", - "extensions": { - "$hint$className": "RollbackType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "NEED", - "NOT_NEED" - ] - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "TemplateStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "DRAFT", - "PUBLISHED", - "RETIRED", - "WAITING_FOR_PUBLISH" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "techRiskEnable": { - "type": "boolean", - "exampleSetFlag": true - }, - "tempAccountAuth": { - "type": "string", - "extensions": { - "$hint$className": "AccountAuthType" - }, - "exampleSetFlag": true, - "enum": [ - "LINUX_ROOT", - "WINDOWS_ADMIN", - "WINDOWS_EDIT", - "WINDOWS_VIEWER" - ] - }, - "templateType": { - "type": "string", - "extensions": { - "$hint$className": "TemplateType" - }, - "exampleSetFlag": true, - "enum": [ - "CUSTOM", - "DEFAULT", - "STANDARD" - ] - }, - "testPlan": { - "type": "string", - "exampleSetFlag": true - }, - "testResult": { - "type": "string", - "extensions": { - "$hint$className": "TestResultType" - }, - "exampleSetFlag": true, - "enum": [ - "BAU_CHANGE", - "NO_TEST_ENV", - "PASSED", - "TEST_MACHINE" - ] - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userGroups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BusinessGroupAO", - "exampleSetFlag": false - } - }, - "validationPlan": { - "type": "string", - "exampleSetFlag": true - }, - "validationType": { - "type": "string", - "extensions": { - "$hint$className": "ValidationType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "MANUAL" - ] - }, - "versionNo": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "VisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "PRIVATE_PERSONAL", - "PUBLIC", - "PUBLIC_GROUP" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateAutomationAO": { - "title": "ChangeTemplateAutomationAO", - "type": "object", - "properties": { - "automationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "automationIdOptions": { - "type": "object", - "exampleSetFlag": true - }, - "automationName": { - "type": "string", - "exampleSetFlag": true - }, - "automationType": { - "type": "string", - "extensions": { - "$hint$className": "AutomationType" - }, - "exampleSetFlag": true, - "enum": [ - "ACTION", - "AUTOMATION_WORK", - "ORCHESTRATION" - ] - }, - "awpFieldOptions": { - "type": "object", - "exampleSetFlag": true - }, - "awpParamMappings": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AwpParamMappingReq", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "params": { - "type": "string", - "exampleSetFlag": true - }, - "runOn": { - "type": "string", - "exampleSetFlag": true - }, - "typeOfChangeExec": { - "type": "string", - "extensions": { - "$hint$className": "AutomationChangeExecType" - }, - "exampleSetFlag": true, - "enum": [ - "CREATE_ACCOUNT", - "DISABLE_ACCOUNT", - "IMPLEMENT", - "MONITOR", - "RISK_ASSESSMENT", - "ROLLBACK", - "VERIFY" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateAutomationReq": { - "title": "ChangeTemplateAutomationReq", - "type": "object", - "properties": { - "automationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "automationIdOptions": { - "type": "object", - "exampleSetFlag": true - }, - "automationName": { - "type": "string", - "exampleSetFlag": true - }, - "automationType": { - "type": "string", - "extensions": { - "$hint$className": "AutomationType" - }, - "exampleSetFlag": true, - "enum": [ - "ACTION", - "AUTOMATION_WORK", - "ORCHESTRATION" - ] - }, - "awpFieldOptions": { - "type": "object", - "exampleSetFlag": true - }, - "awpParamMappings": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AwpParamMappingReq", - "exampleSetFlag": false - } - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "typeOfChangeExec": { - "type": "string", - "extensions": { - "$hint$className": "AutomationChangeExecType" - }, - "exampleSetFlag": true, - "enum": [ - "CREATE_ACCOUNT", - "DISABLE_ACCOUNT", - "IMPLEMENT", - "MONITOR", - "RISK_ASSESSMENT", - "ROLLBACK", - "VERIFY" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateBasicAO": { - "title": "ChangeTemplateBasicAO", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateCiItemAO": { - "title": "ChangeTemplateCiItemAO", - "type": "object", - "properties": { - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "templateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateCiItemReq": { - "title": "ChangeTemplateCiItemReq", - "type": "object", - "properties": { - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateCreateReq": { - "title": "ChangeTemplateCreateReq", - "type": "object", - "properties": { - "addMonitor": { - "type": "string", - "extensions": { - "$hint$className": "AddMonitorType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO_ADD", - "NOT_NEED" - ] - }, - "automationIds": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "automationType": { - "type": "string", - "extensions": { - "$hint$className": "AutomationType" - }, - "exampleSetFlag": true, - "enum": [ - "ACTION", - "AUTOMATION_WORK", - "ORCHESTRATION" - ] - }, - "automations": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeSceneId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeType": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - }, - "ciItems": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeTemplateCiItemReq", - "exampleSetFlag": false - } - }, - "ciTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "commonRiskDefine": { - "type": "string", - "exampleSetFlag": true - }, - "commonRiskEnable": { - "type": "boolean", - "exampleSetFlag": true - }, - "file": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "hasRollbackPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "implPlan": { - "type": "string", - "exampleSetFlag": true - }, - "outageRequired": { - "type": "boolean", - "exampleSetFlag": true - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "preDefWindow": { - "type": "string", - "extensions": { - "$hint$className": "PreDefWindowType" - }, - "exampleSetFlag": true, - "enum": [ - "NON_FROZEN", - "ON_DEMAND", - "WEEKEND" - ] - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "rollbackPlan": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackType": { - "type": "string", - "extensions": { - "$hint$className": "RollbackType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "NEED", - "NOT_NEED" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "techRiskDefine": { - "type": "string", - "exampleSetFlag": true - }, - "techRiskEnable": { - "type": "boolean", - "exampleSetFlag": true - }, - "tempAccountAuth": { - "type": "string", - "extensions": { - "$hint$className": "AccountAuthType" - }, - "exampleSetFlag": true, - "enum": [ - "LINUX_ROOT", - "WINDOWS_ADMIN", - "WINDOWS_EDIT", - "WINDOWS_VIEWER" - ] - }, - "templateType": { - "type": "string", - "extensions": { - "$hint$className": "TemplateType" - }, - "exampleSetFlag": true, - "enum": [ - "CUSTOM", - "DEFAULT", - "STANDARD" - ] - }, - "testPlan": { - "type": "string", - "exampleSetFlag": true - }, - "testResult": { - "type": "string", - "extensions": { - "$hint$className": "TestResultType" - }, - "exampleSetFlag": true, - "enum": [ - "BAU_CHANGE", - "NO_TEST_ENV", - "PASSED", - "TEST_MACHINE" - ] - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "userGroups": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "userToken": { - "type": "string", - "exampleSetFlag": true - }, - "validationPlan": { - "type": "string", - "exampleSetFlag": true - }, - "validationType": { - "type": "string", - "extensions": { - "$hint$className": "ValidationType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "MANUAL" - ] - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "VisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "PRIVATE_PERSONAL", - "PUBLIC", - "PUBLIC_GROUP" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateRetireReq": { - "title": "ChangeTemplateRetireReq", - "type": "object", - "properties": { - "retireReason": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateSceneDetailAO": { - "title": "ChangeTemplateSceneDetailAO", - "type": "object", - "properties": { - "l1Name": { - "type": "string", - "exampleSetFlag": true - }, - "l2Name": { - "type": "string", - "exampleSetFlag": true - }, - "l3Name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateSearchReq": { - "title": "ChangeTemplateSearchReq", - "type": "object", - "properties": { - "changeSceneId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeType": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - } - }, - "checkSceneId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "hasRollbackPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "implPlan": { - "type": "string", - "exampleSetFlag": true - }, - "outageRequired": { - "type": "boolean", - "exampleSetFlag": true - }, - "owner": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "ownerTower": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "preDefWindow": { - "type": "string", - "extensions": { - "$hint$className": "PreDefWindowType" - }, - "exampleSetFlag": true, - "enum": [ - "NON_FROZEN", - "ON_DEMAND", - "WEEKEND" - ] - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - "rollbackPlan": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CANCELLED", - "DRAFT", - "PUBLISHED", - "RETIRED", - "WAITING_FOR_PUBLISH" - ] - } - }, - "submitterSingle": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "templateType": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CUSTOM", - "DEFAULT", - "STANDARD" - ] - } - }, - "testPlan": { - "type": "string", - "exampleSetFlag": true - }, - "testResult": { - "type": "string", - "extensions": { - "$hint$className": "TestResultType" - }, - "exampleSetFlag": true, - "enum": [ - "BAU_CHANGE", - "NO_TEST_ENV", - "PASSED", - "TEST_MACHINE" - ] - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "validationPlan": { - "type": "string", - "exampleSetFlag": true - }, - "versionNo": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "PRIVATE_PERSONAL", - "PUBLIC", - "PUBLIC_GROUP" - ] - } - } - }, - "exampleSetFlag": false - }, - "ChangeTemplateUpdateReq": { - "title": "ChangeTemplateUpdateReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "addMonitor": { - "type": "string", - "extensions": { - "$hint$className": "AddMonitorType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO_ADD", - "NOT_NEED" - ] - }, - "automationIds": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "automationType": { - "type": "string", - "extensions": { - "$hint$className": "AutomationType" - }, - "exampleSetFlag": true, - "enum": [ - "ACTION", - "AUTOMATION_WORK", - "ORCHESTRATION" - ] - }, - "automations": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "changeSceneId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeType": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - }, - "ciItems": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeTemplateCiItemReq", - "exampleSetFlag": false - } - }, - "ciTypes": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "commonRiskDefine": { - "type": "string", - "exampleSetFlag": true - }, - "commonRiskEnable": { - "type": "boolean", - "exampleSetFlag": true - }, - "file": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "hasRollbackPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "implPlan": { - "type": "string", - "exampleSetFlag": true - }, - "outageRequired": { - "type": "boolean", - "exampleSetFlag": true - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "preDefWindow": { - "type": "string", - "extensions": { - "$hint$className": "PreDefWindowType" - }, - "exampleSetFlag": true, - "enum": [ - "NON_FROZEN", - "ON_DEMAND", - "WEEKEND" - ] - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "rollbackPlan": { - "type": "string", - "exampleSetFlag": true - }, - "rollbackType": { - "type": "string", - "extensions": { - "$hint$className": "RollbackType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "NEED", - "NOT_NEED" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "techRiskDefine": { - "type": "string", - "exampleSetFlag": true - }, - "techRiskEnable": { - "type": "boolean", - "exampleSetFlag": true - }, - "tempAccountAuth": { - "type": "string", - "extensions": { - "$hint$className": "AccountAuthType" - }, - "exampleSetFlag": true, - "enum": [ - "LINUX_ROOT", - "WINDOWS_ADMIN", - "WINDOWS_EDIT", - "WINDOWS_VIEWER" - ] - }, - "testPlan": { - "type": "string", - "exampleSetFlag": true - }, - "testResult": { - "type": "string", - "extensions": { - "$hint$className": "TestResultType" - }, - "exampleSetFlag": true, - "enum": [ - "BAU_CHANGE", - "NO_TEST_ENV", - "PASSED", - "TEST_MACHINE" - ] - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "userGroups": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "userToken": { - "type": "string", - "exampleSetFlag": true - }, - "validationPlan": { - "type": "string", - "exampleSetFlag": true - }, - "validationType": { - "type": "string", - "extensions": { - "$hint$className": "ValidationType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "MANUAL" - ] - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "VisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "PRIVATE_PERSONAL", - "PUBLIC", - "PUBLIC_GROUP" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeUpdateReq": { - "title": "ChangeUpdateReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/MethodReq", - "exampleSetFlag": true - }, - "assignees": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "changeActionItem": { - "type": "string", - "exampleSetFlag": true - }, - "changeOperationClass": { - "type": "string", - "exampleSetFlag": true - }, - "changeSource": { - "$ref": "#/components/schemas/ChangeSourceReq", - "exampleSetFlag": true - }, - "changeTechnicalDomain": { - "type": "string", - "exampleSetFlag": true - }, - "downRiskReason": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "incidentLevel": { - "type": "string", - "extensions": { - "$hint$className": "IncidentLevel" - }, - "exampleSetFlag": true, - "enum": [ - "P1", - "P2", - "P3", - "P4" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "risk": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeViolationAO": { - "title": "ChangeViolationAO", - "type": "object", - "properties": { - "actualEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "actualStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "changeSource": { - "$ref": "#/components/schemas/ChangeSourceAO", - "exampleSetFlag": true - }, - "closeStatus": { - "type": "string", - "extensions": { - "$hint$className": "CloseStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "REJECTED", - "SUCCESS", - "SUCCESS_WITH_ISSUE" - ] - }, - "closeUserId": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ChangeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "submitterTower": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "violationType": { - "type": "string", - "extensions": { - "$hint$className": "ViolationReason" - }, - "exampleSetFlag": true, - "enum": [ - "ACTUAL_END_AFTER_PLAN_END_TIME", - "NOT_APPROVED_BEFORE_IMPL", - "SAME_SUBMITTER_AND_APPROVER", - "UN_CLOSE_EXCEED_48H" - ] - } - }, - "exampleSetFlag": false - }, - "ChangeViolationSearchReq": { - "title": "ChangeViolationSearchReq", - "type": "object", - "properties": { - "actualEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "actualStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "closeStatus": { - "type": "string", - "extensions": { - "$hint$className": "CloseStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "REJECTED", - "SUCCESS", - "SUCCESS_WITH_ISSUE" - ] - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "motivation": { - "type": "string", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planEndDateEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planEndDateStart": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - "status": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - } - }, - "submitter": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "submitterTower": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "violationType": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ACTUAL_END_AFTER_PLAN_END_TIME", - "NOT_APPROVED_BEFORE_IMPL", - "SAME_SUBMITTER_AND_APPROVER", - "UN_CLOSE_EXCEED_48H" - ] - } - } - }, - "exampleSetFlag": false - }, - "ChatConversationAO": { - "title": "ChatConversationAO", - "type": "object", - "properties": { - "conversationDuration": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endBy": { - "type": "string", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "from": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "lastMessageContent": { - "type": "string", - "exampleSetFlag": true - }, - "lastMessageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "lastMessageTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "serviceDeskGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskGroupNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ConversationStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CHAT_ING", - "END" - ] - }, - "to": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ConversationType" - }, - "exampleSetFlag": true, - "enum": [ - "ROBOT", - "SERVICE" - ] - }, - "userAgentType": { - "type": "string", - "extensions": { - "$hint$className": "ConversationUserAgentType" - }, - "exampleSetFlag": true, - "enum": [ - "DING_TALK", - "MOBILE", - "WEB", - "WECHAT", - "WECHAT_PC" - ] - } - }, - "exampleSetFlag": false - }, - "ChatConversationStatisticAO": { - "title": "ChatConversationStatisticAO", - "type": "object", - "properties": { - "averageConversationTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "conversationCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "date": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "offlineServiceDeskUserCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "onlineServiceDeskUserCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "restServiceDeskUserCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskUserCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "timeSpan": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChatConversationStatisticSearchReq": { - "title": "ChatConversationStatisticSearchReq", - "type": "object", - "properties": { - "endDate": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskGroupIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "startDate": { - "type": "string", - "exampleSetFlag": true - }, - "timeUnit": { - "type": "string", - "extensions": { - "$hint$className": "SearchTimeUnit" - }, - "exampleSetFlag": true, - "enum": [ - "DAY", - "HOURS", - "MONTH", - "WEEK" - ] - } - }, - "exampleSetFlag": false - }, - "ChatConversationWaitAO": { - "title": "ChatConversationWaitAO", - "type": "object", - "properties": { - "from": { - "type": "string", - "exampleSetFlag": true - }, - "fromConversationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "lastMessageContent": { - "type": "string", - "exampleSetFlag": true - }, - "lastMessageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "lastMessageTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "serviceDeskGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChatExitResultAO": { - "title": "ChatExitResultAO", - "type": "object", - "properties": { - "exitSuccess": { - "type": "boolean", - "exampleSetFlag": true - }, - "notifyMembers": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "ChatIncidentAO": { - "title": "ChatIncidentAO", - "type": "object", - "properties": { - "assigneeType": { - "type": "string", - "extensions": { - "$hint$className": "AssigneeType" - }, - "exampleSetFlag": true, - "enum": [ - "FIRST_LINE", - "SECOND_LINE" - ] - }, - "conversionId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChatMessage": { - "title": "ChatMessage", - "type": "object", - "properties": { - "agentId": { - "type": "integer", - "description": "智晓星插件Id", - "format": "int32", - "exampleSetFlag": true - }, - "content": { - "type": "string", - "description": "消息内容", - "exampleSetFlag": true - }, - "contentZh": { - "type": "string", - "description": "消息内容(中文)", - "exampleSetFlag": true - }, - "conversationId": { - "type": "integer", - "description": "会话id", - "format": "int32", - "exampleSetFlag": true - }, - "ex": { - "type": "object", - "description": "消息扩展字段", - "exampleSetFlag": true - }, - "excludeUserAgentType": { - "type": "string", - "description": "需排除推送的用户终端", - "extensions": { - "$hint$className": "ConversationUserAgentType" - }, - "exampleSetFlag": true, - "enum": [ - "DING_TALK", - "MOBILE", - "WEB", - "WECHAT", - "WECHAT_PC" - ] - }, - "from": { - "type": "string", - "description": "消息发送人", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "mediaType": { - "type": "string", - "extensions": { - "$hint$className": "MessageMediaType" - }, - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "EMOJI_TEXT", - "IMAGE", - "TEXT", - "VIDEO" - ] - }, - "relateItsmFileId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sendTime": { - "type": "string", - "description": "消息发送时间", - "format": "date-time", - "exampleSetFlag": true - }, - "to": { - "type": "string", - "description": "消息接收人", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "description": "消息类型", - "extensions": { - "$hint$className": "MessageType" - }, - "exampleSetFlag": true, - "enum": [ - "AGENTS", - "ANSWER", - "CHAT", - "CLEAR", - "ERROR", - "FEEDBACK", - "FINISH", - "FINISH_CONVERSATION", - "HISTORY_FINISH", - "NOTIFY", - "SALUTATION", - "STOP", - "SWITCH_SERVICE_DESK", - "TIP" - ] - } - }, - "exampleSetFlag": false - }, - "ChatMessage4Mq": { - "title": "ChatMessage4Mq", - "type": "object", - "properties": { - "agentId": { - "type": "integer", - "description": "智晓星插件Id", - "format": "int32", - "exampleSetFlag": true - }, - "clientType": { - "type": "string", - "extensions": { - "$hint$className": "ChatClientType" - }, - "exampleSetFlag": true, - "enum": [ - "PORTAL", - "SERVICE" - ] - }, - "content": { - "type": "string", - "description": "消息内容", - "exampleSetFlag": true - }, - "contentZh": { - "type": "string", - "description": "消息内容(中文)", - "exampleSetFlag": true - }, - "conversationFrom": { - "type": "string", - "exampleSetFlag": true - }, - "conversationId": { - "type": "integer", - "description": "会话id", - "format": "int32", - "exampleSetFlag": true - }, - "conversationTo": { - "type": "string", - "exampleSetFlag": true - }, - "ex": { - "type": "object", - "description": "消息扩展字段", - "exampleSetFlag": true - }, - "excludeUserAgentType": { - "type": "string", - "description": "需排除推送的用户终端", - "extensions": { - "$hint$className": "ConversationUserAgentType" - }, - "exampleSetFlag": true, - "enum": [ - "DING_TALK", - "MOBILE", - "WEB", - "WECHAT", - "WECHAT_PC" - ] - }, - "from": { - "type": "string", - "description": "消息发送人", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "mediaType": { - "type": "string", - "extensions": { - "$hint$className": "MessageMediaType" - }, - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "EMOJI_TEXT", - "IMAGE", - "TEXT", - "VIDEO" - ] - }, - "msgExActionType": { - "type": "string", - "extensions": { - "$hint$className": "MsgExActionType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE_CONVERSATION_INFO", - "CONVERSATION_END", - "END_WAIT_ENTRY", - "EXIT_WAIT_ENTRY", - "GET_SERVICE_DESK_LIST", - "REFRESH_CONVERSATION_CHAT", - "REFRESH_CONVERSATION_COUNT", - "REFRESH_CONVERSATION_WAIT", - "REFRESH_WAIT_SEQ" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateItsmFileId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sendTime": { - "type": "string", - "description": "消息发送时间", - "format": "date-time", - "exampleSetFlag": true - }, - "to": { - "type": "string", - "description": "消息接收人", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "description": "消息类型", - "extensions": { - "$hint$className": "MessageType" - }, - "exampleSetFlag": true, - "enum": [ - "AGENTS", - "ANSWER", - "CHAT", - "CLEAR", - "ERROR", - "FEEDBACK", - "FINISH", - "FINISH_CONVERSATION", - "HISTORY_FINISH", - "NOTIFY", - "SALUTATION", - "STOP", - "SWITCH_SERVICE_DESK", - "TIP" - ] - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChatMessageAO": { - "title": "ChatMessageAO", - "type": "object", - "properties": { - "content": { - "type": "string", - "exampleSetFlag": true - }, - "contentZh": { - "type": "string", - "exampleSetFlag": true - }, - "conversationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ex": { - "type": "object", - "exampleSetFlag": true - }, - "feedBackAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "feedBackType": { - "type": "string", - "exampleSetFlag": true - }, - "from": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "mediaType": { - "type": "string", - "extensions": { - "$hint$className": "MessageMediaType" - }, - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "EMOJI_TEXT", - "IMAGE", - "TEXT", - "VIDEO" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateItsmFileId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sendTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "to": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "MessageType" - }, - "exampleSetFlag": true, - "enum": [ - "AGENTS", - "ANSWER", - "CHAT", - "CLEAR", - "ERROR", - "FEEDBACK", - "FINISH", - "FINISH_CONVERSATION", - "HISTORY_FINISH", - "NOTIFY", - "SALUTATION", - "STOP", - "SWITCH_SERVICE_DESK", - "TIP" - ] - } - }, - "exampleSetFlag": false - }, - "ChatMessageSearchReq": { - "title": "ChatMessageSearchReq", - "type": "object", - "properties": { - "conversationForm": { - "type": "string", - "exampleSetFlag": true - }, - "conversationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "conversationTo": { - "type": "string", - "exampleSetFlag": true - }, - "from": { - "type": "string", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ConversationStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CHAT_ING", - "END" - ] - }, - "to": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ConversationType" - }, - "exampleSetFlag": true, - "enum": [ - "ROBOT", - "SERVICE" - ] - } - }, - "exampleSetFlag": false - }, - "ChatPickResultAO": { - "title": "ChatPickResultAO", - "type": "object", - "properties": { - "fromConversationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "newConversationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "portalUser": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskMembers": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "serviceUser": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChatServiceUserMonitorAO": { - "title": "ChatServiceUserMonitorAO", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "offlineDuration": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "onlineDuration": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "onlineStatus": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "restDuration": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "serviceDeskGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskGroupNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskUser": { - "type": "string", - "exampleSetFlag": true - }, - "serviceThresholdRatio": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChatServiceUserMonitorSearchReq": { - "title": "ChatServiceUserMonitorSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "onlineStatus": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskGroupIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "serviceDeskUser": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "ChatWaitMonitorAO": { - "title": "ChatWaitMonitorAO", - "type": "object", - "properties": { - "conversationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "portalUser": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskGroupNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "waitDuration": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "waitStartAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChatWaitMonitorSearchReq": { - "title": "ChatWaitMonitorSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "portalUser": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "serviceDeskGroupId": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskGroupIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "waitDuration": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "waitStartAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChatWaitStatisticAO": { - "title": "ChatWaitStatisticAO", - "type": "object", - "properties": { - "averageWaitTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "date": { - "type": "string", - "exampleSetFlag": true - }, - "onlineServiceDeskUserCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "timeSpan": { - "type": "string", - "exampleSetFlag": true - }, - "waitCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ChatWaitStatisticSearchReq": { - "title": "ChatWaitStatisticSearchReq", - "type": "object", - "properties": { - "endDate": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskGroupIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "startDate": { - "type": "string", - "exampleSetFlag": true - }, - "timeUnit": { - "type": "string", - "extensions": { - "$hint$className": "SearchTimeUnit" - }, - "exampleSetFlag": true, - "enum": [ - "DAY", - "HOURS", - "MONTH", - "WEEK" - ] - } - }, - "exampleSetFlag": false - }, - "CiQueryCondition": { - "title": "CiQueryCondition", - "type": "object", - "properties": { - "column": { - "type": "string", - "exampleSetFlag": true - }, - "maxVal": { - "type": "object", - "exampleSetFlag": true - }, - "minVal": { - "type": "object", - "exampleSetFlag": true - }, - "option": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "value": { - "type": "object", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CiRelationVO": { - "title": "CiRelationVO", - "type": "object", - "properties": { - "ciTypeList": { - "$ref": "#/components/schemas/PageResult", - "exampleSetFlag": true - }, - "showColumns": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/QueryShow", - "exampleSetFlag": false - } - }, - "types": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CiTypeAO0", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "CiSearchForm": { - "title": "CiSearchForm", - "type": "object", - "properties": { - "ciIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "className": { - "type": "string", - "exampleSetFlag": true - }, - "conditions": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CiQueryCondition", - "exampleSetFlag": false - } - }, - "mode": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "queryLike": { - "type": "boolean", - "exampleSetFlag": true - }, - "querySort": { - "$ref": "#/components/schemas/QuerySort", - "exampleSetFlag": true - }, - "showColumns": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/QueryShow", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "CiSearchReq": { - "title": "CiSearchReq", - "type": "object", - "properties": { - "className": { - "type": "string", - "exampleSetFlag": true - }, - "conditions": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CiQueryCondition", - "exampleSetFlag": false - } - }, - "mode": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "queryLike": { - "type": "boolean", - "exampleSetFlag": true - }, - "querySort": { - "$ref": "#/components/schemas/QuerySort", - "exampleSetFlag": true - }, - "showColumns": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/QueryShow", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "CiTypeAO": { - "title": "CiTypeAO", - "type": "object", - "properties": { - "auditSwitch": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "ciOwner": { - "type": "string", - "exampleSetFlag": true - }, - "ciTypeKey": { - "type": "string", - "exampleSetFlag": true - }, - "classificationFieldId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "exampleSetFlag": true - }, - "createdBy": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "customizeFormKey": { - "type": "string", - "exampleSetFlag": true - }, - "deleteFlag": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "domainIds": { - "type": "string", - "exampleSetFlag": true - }, - "formType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "healthViewSwitch": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "icon": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isCoreCiType": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "maxId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "orderNo": { - "type": "number", - "format": "double", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CiTypeAO0": { - "title": "CiTypeAO0", - "type": "object", - "properties": { - "auditSwitch": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "ciOwner": { - "type": "string", - "exampleSetFlag": true - }, - "ciTypeKey": { - "type": "string", - "exampleSetFlag": true - }, - "classificationFieldId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "exampleSetFlag": true - }, - "createdBy": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "customizeFormKey": { - "type": "string", - "exampleSetFlag": true - }, - "deleteFlag": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "domainIds": { - "type": "string", - "exampleSetFlag": true - }, - "formType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "healthViewSwitch": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "icon": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isCoreCiType": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "maxId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "orderNo": { - "type": "number", - "format": "double", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CiTypeFieldListReq": { - "title": "CiTypeFieldListReq", - "type": "object", - "properties": { - "column": { - "type": "string", - "exampleSetFlag": true - }, - "dcolumn": { - "type": "string", - "exampleSetFlag": true - }, - "dlabel": { - "type": "string", - "exampleSetFlag": true - }, - "dvalue": { - "type": "string", - "exampleSetFlag": true - }, - "label": { - "type": "string", - "exampleSetFlag": true - }, - "typeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CiTypeForm": { - "title": "CiTypeForm", - "type": "object", - "properties": { - "id": { - "type": "integer", - "description": "ciTypeId", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "description": "ciTypeName", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CiTypeListAO": { - "title": "CiTypeListAO", - "type": "object", - "properties": { - "ciOwner": { - "type": "string", - "exampleSetFlag": true - }, - "ciTypeKey": { - "type": "string", - "exampleSetFlag": true - }, - "classificationFieldId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "exampleSetFlag": true - }, - "createdBy": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "domainIds": { - "type": "string", - "exampleSetFlag": true - }, - "healthViewSwitch": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "icon": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isCoreCiType": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "orderNo": { - "type": "number", - "format": "double", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CommonCreateReq": { - "title": "CommonCreateReq", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "link": { - "type": "string", - "exampleSetFlag": true - }, - "linkName": { - "type": "string", - "exampleSetFlag": true - }, - "linkNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CommonLinkAO": { - "title": "CommonLinkAO", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "link": { - "type": "string", - "exampleSetFlag": true - }, - "linkName": { - "type": "string", - "exampleSetFlag": true - }, - "linkNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "onlineStatus": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "Condition": { - "title": "Condition", - "type": "object", - "exampleSetFlag": false - }, - "ConfigAO": { - "title": "ConfigAO", - "type": "object", - "properties": { - "defaultVal": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imageList": { - "$ref": "#/components/schemas/AttachmentAO", - "exampleSetFlag": true - }, - "key": { - "type": "string", - "exampleSetFlag": true - }, - "onlineStatus": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "value": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ConfigCreateReq": { - "title": "ConfigCreateReq", - "type": "object", - "properties": { - "defaultVal": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "key": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "value": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ConflictedCiChangeAO": { - "title": "ConflictedCiChangeAO", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciChangeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciType": { - "type": "string", - "extensions": { - "$hint$className": "CMDBCiType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION", - "APPLICATION_INSTANCE", - "ASSETS", - "BACKUP_CONTENT", - "BACKUP_DEVICE", - "BMS", - "CIRCUIT", - "CLOUD", - "COMPUTER_ROOM", - "CONTAINER_CLUSTER", - "CONTAINER_PROJECT", - "CONTAINER_SERVICE", - "COST_CENTER", - "DATABASE", - "DATACENTER", - "DEVICE_ONBOARD_APPLICATION", - "DOMAIN_NAME", - "ELASTIC_CACHE_CLUSTER", - "EXTERNAL_SERVER", - "FACILITY_AC", - "FACILITY_GENERATOR", - "FACILITY_RACK", - "FACILITY_UPS", - "FILESYSTEM", - "HA_Cluster", - "INTEGRATION_CI", - "IP_SUBNET", - "LEC_COMPANY", - "LEC_CUSTOMER", - "LEC_SYSTEM", - "MICROSERVICECLUSTER", - "MICROSERVICESERVICE", - "MQ_SERVICE", - "NAS_STORAGE", - "NETWORK_DEVICE", - "NETWORK_DEVICE_PORT", - "NETWORK_SITE", - "NETWORK_ZONE", - "OBJECT_STORAGE", - "OS_STORAGE", - "PDU", - "PUBLIC_CLOUD_ACCOUNT", - "PUBLIC_CLOUD_DATABASE", - "PUBLIC_CLOUD_DISK", - "REMEDY_GROUP", - "ROUTE_DOMAIN", - "SERVER", - "SERVER_LOAD_BALANCER", - "SERVICE", - "SOFTWARE", - "SSL", - "STORAGE_DEVICE", - "STORAGE_LUN", - "STORAGE_POOL", - "SW_LICENSE", - "SW_PR", - "USER_INFO", - "VIRTUAL_IP_ADDRESS" - ] - }, - "ciTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "className": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ChangeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ChangeType" - }, - "exampleSetFlag": true, - "enum": [ - "EMERGENCY", - "EMERGENCY_ND", - "NORMAL", - "STANDARD", - "WEIGHTY" - ] - } - }, - "exampleSetFlag": false - }, - "ConversationCountAO": { - "title": "ConversationCountAO", - "type": "object", - "properties": { - "chatEndCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "chatIngCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "chatWaitCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ConversationManageSearchReq": { - "title": "ConversationManageSearchReq", - "type": "object", - "properties": { - "conversationDuration": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "from": { - "type": "string", - "exampleSetFlag": true - }, - "fromList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "serviceDeskGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskGroupIdList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ConversationStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CHAT_ING", - "END" - ] - }, - "to": { - "type": "string", - "exampleSetFlag": true - }, - "toList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ConversationType" - }, - "exampleSetFlag": true, - "enum": [ - "ROBOT", - "SERVICE" - ] - } - }, - "exampleSetFlag": false - }, - "ConversationSearchReq": { - "title": "ConversationSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "from": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ConversationStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CHAT_ING", - "END" - ] - }, - "to": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ConversationSwitchReq": { - "title": "ConversationSwitchReq", - "type": "object", - "properties": { - "serviceDeskGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskGroupNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskUser": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CrSubTaskAO": { - "title": "CrSubTaskAO", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "attachment": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/FileInfoAO", - "exampleSetFlag": false - } - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "changeAssigneeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeNo": { - "type": "string", - "exampleSetFlag": true - }, - "changePlanEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "changePlanStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "changeStatus": { - "type": "string", - "extensions": { - "$hint$className": "ChangeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - }, - "changeStatusZh": { - "type": "string", - "exampleSetFlag": true - }, - "changeSubmitter": { - "type": "string", - "exampleSetFlag": true - }, - "cmNo": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rejectReason": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "remarksAttachment": { - "type": "string", - "exampleSetFlag": true - }, - "remarksAttachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/FileInfoAO", - "exampleSetFlag": false - } - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "statusEn": { - "type": "string", - "exampleSetFlag": true - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "taskNo": { - "type": "string", - "exampleSetFlag": true - }, - "taskType": { - "type": "string", - "extensions": { - "$hint$className": "SubTaskType" - }, - "exampleSetFlag": true, - "enum": [ - "MANUAL", - "SYSTEM" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CrSubTaskCreateReq": { - "title": "CrSubTaskCreateReq", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/FileInfoAO", - "exampleSetFlag": false - } - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "cmNo": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rejectReason": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "remarksAttachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/FileInfoAO", - "exampleSetFlag": false - } - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "taskType": { - "type": "string", - "extensions": { - "$hint$className": "SubTaskType" - }, - "exampleSetFlag": true, - "enum": [ - "MANUAL", - "SYSTEM" - ] - } - }, - "exampleSetFlag": false - }, - "CrSubTaskSearchReq": { - "title": "CrSubTaskSearchReq", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "changeNo": { - "type": "string", - "exampleSetFlag": true - }, - "cmNo": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "endCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "pageQueryType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "planEndTimeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planEndTimeStart": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTimeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTimeStart": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "startCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "subTaskStatusList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "taskNo": { - "type": "string", - "exampleSetFlag": true - }, - "types": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "CrSubTaskUpdateReq": { - "title": "CrSubTaskUpdateReq", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/FileInfoAO", - "exampleSetFlag": false - } - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rejectReason": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "remarksAttachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/FileInfoAO", - "exampleSetFlag": false - } - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DashBoardAppEntry": { - "title": "DashBoardAppEntry", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/DashBoardAppEntryPage", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DashBoardAppEntryRow", - "exampleSetFlag": false - } - }, - "title": { - "$ref": "#/components/schemas/DashBoardAppEntryTitle", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DashBoardAppEntryPage": { - "title": "DashBoardAppEntryPage", - "type": "object", - "properties": { - "number": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "size": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "totalElements": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DashBoardAppEntryRow": { - "title": "DashBoardAppEntryRow", - "type": "object", - "properties": { - "appName": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "critical": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "string", - "exampleSetFlag": true - }, - "high": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "low": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "medium": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sum": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DashBoardAppEntryTitle": { - "title": "DashBoardAppEntryTitle", - "type": "object", - "properties": { - "critical": { - "type": "string", - "exampleSetFlag": true - }, - "criticalCn": { - "type": "string", - "exampleSetFlag": true - }, - "high": { - "type": "string", - "exampleSetFlag": true - }, - "highCn": { - "type": "string", - "exampleSetFlag": true - }, - "low": { - "type": "string", - "exampleSetFlag": true - }, - "lowCn": { - "type": "string", - "exampleSetFlag": true - }, - "medium": { - "type": "string", - "exampleSetFlag": true - }, - "mediumCn": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "sum": { - "type": "string", - "exampleSetFlag": true - }, - "sumCn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DayRepeatRuleItem": { - "title": "DayRepeatRuleItem", - "type": "object", - "properties": { - "interval": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "skipNonWorkDay": { - "type": "boolean", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DepartUserSearchForm": { - "title": "DepartUserSearchForm", - "type": "object", - "properties": { - "departmentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DocSearchForm": { - "title": "DocSearchForm", - "type": "object", - "properties": { - "documentNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyAO": { - "title": "DutyAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "privilegeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PrivilegeReq", - "exampleSetFlag": false - } - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "ITSMVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "ORG", - "USER" - ] - }, - "visibilityZh": { - "type": "string", - "exampleSetFlag": true - }, - "workDateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "workDateName": { - "type": "string", - "exampleSetFlag": true - }, - "workLocationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "workLocationName": { - "type": "string", - "exampleSetFlag": true - }, - "workLocationTimeZone": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassAO": { - "title": "DutyClassAO", - "type": "object", - "properties": { - "duration": { - "type": "string", - "exampleSetFlag": true - }, - "durationZh": { - "type": "string", - "exampleSetFlag": true - }, - "dutyClassUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassUserAO", - "exampleSetFlag": false - } - }, - "dutyRange": { - "type": "string", - "exampleSetFlag": true - }, - "dutyUsers": { - "type": "string", - "exampleSetFlag": true - }, - "end": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "start": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassChangeAO": { - "title": "DutyClassChangeAO", - "type": "object", - "properties": { - "approveAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approveBy": { - "type": "string", - "exampleSetFlag": true - }, - "approveNotes": { - "type": "string", - "exampleSetFlag": true - }, - "changeUserCode": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "originDate": { - "type": "string", - "exampleSetFlag": true - }, - "originDutyClassId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "originDutyClassName": { - "type": "string", - "exampleSetFlag": true - }, - "originDutyClassNameReal": { - "type": "string", - "exampleSetFlag": true - }, - "originDutyId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "originDutyName": { - "type": "string", - "exampleSetFlag": true - }, - "originDutyNameReal": { - "type": "string", - "exampleSetFlag": true - }, - "reason": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "DutyLeaveStatus" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECT", - "REVOKE", - "WAITING_FOR_APPROVE" - ] - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "targetDate": { - "type": "string", - "exampleSetFlag": true - }, - "targetDutyClassId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "targetDutyClassName": { - "type": "string", - "exampleSetFlag": true - }, - "targetDutyClassNameReal": { - "type": "string", - "exampleSetFlag": true - }, - "targetDutyId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "targetDutyName": { - "type": "string", - "exampleSetFlag": true - }, - "targetDutyNameReal": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassChangeApprovalReq": { - "title": "DutyClassChangeApprovalReq", - "type": "object", - "properties": { - "approveNotes": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "DutyLeaveStatus" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECT", - "REVOKE", - "WAITING_FOR_APPROVE" - ] - } - }, - "exampleSetFlag": false - }, - "DutyClassChangeReq": { - "title": "DutyClassChangeReq", - "type": "object", - "properties": { - "changeUserCode": { - "type": "string", - "exampleSetFlag": true - }, - "originDate": { - "type": "string", - "exampleSetFlag": true - }, - "originDutyClassId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "originDutyId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "reason": { - "type": "string", - "exampleSetFlag": true - }, - "targetDate": { - "type": "string", - "exampleSetFlag": true - }, - "targetDutyClassId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "targetDutyId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassChangeSearchReq": { - "title": "DutyClassChangeSearchReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeUserCode": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "DutyLeaveStatus" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECT", - "REVOKE", - "WAITING_FOR_APPROVE" - ] - }, - "statusList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "APPROVED", - "REJECT", - "REVOKE", - "WAITING_FOR_APPROVE" - ] - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassLeaveAO": { - "title": "DutyClassLeaveAO", - "type": "object", - "properties": { - "approveAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approveBy": { - "type": "string", - "exampleSetFlag": true - }, - "approveNotes": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "end": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "reason": { - "type": "string", - "exampleSetFlag": true - }, - "replaceUserCode": { - "type": "string", - "exampleSetFlag": true - }, - "start": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "DutyLeaveStatus" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECT", - "REVOKE", - "WAITING_FOR_APPROVE" - ] - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassLeaveApproveReq": { - "title": "DutyClassLeaveApproveReq", - "type": "object", - "properties": { - "approveNotes": { - "type": "string", - "exampleSetFlag": true - }, - "replaceUserCode": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "DutyLeaveStatus" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECT", - "REVOKE", - "WAITING_FOR_APPROVE" - ] - } - }, - "exampleSetFlag": false - }, - "DutyClassLeaveReq": { - "title": "DutyClassLeaveReq", - "type": "object", - "properties": { - "end": { - "type": "string", - "exampleSetFlag": true - }, - "reason": { - "type": "string", - "exampleSetFlag": true - }, - "start": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassLeaveSearchReq": { - "title": "DutyClassLeaveSearchReq", - "type": "object", - "properties": { - "approveAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approveBy": { - "type": "string", - "exampleSetFlag": true - }, - "approveNotes": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "end": { - "type": "string", - "exampleSetFlag": true - }, - "reason": { - "type": "string", - "exampleSetFlag": true - }, - "replaceUserCode": { - "type": "string", - "exampleSetFlag": true - }, - "start": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "DutyLeaveStatus" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECT", - "REVOKE", - "WAITING_FOR_APPROVE" - ] - }, - "statusList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "APPROVED", - "REJECT", - "REVOKE", - "WAITING_FOR_APPROVE" - ] - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassLogAO": { - "title": "DutyClassLogAO", - "type": "object", - "properties": { - "canSignIn": { - "type": "boolean", - "exampleSetFlag": true - }, - "canSignOut": { - "type": "boolean", - "exampleSetFlag": true - }, - "detail": { - "type": "string", - "exampleSetFlag": true - }, - "dutyClassGroup": { - "type": "string", - "exampleSetFlag": true - }, - "dutyClassId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dutyClassName": { - "type": "string", - "exampleSetFlag": true - }, - "dutyClassScheduleId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dutyClassScheduleRelationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dutyClassUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassUserAO", - "exampleSetFlag": false - } - }, - "dutyClassUsers": { - "type": "string", - "exampleSetFlag": true - }, - "dutyDate": { - "type": "string", - "exampleSetFlag": true - }, - "dutyId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dutyName": { - "type": "string", - "exampleSetFlag": true - }, - "dutyTime": { - "type": "string", - "exampleSetFlag": true - }, - "endDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endDateStr": { - "type": "string", - "exampleSetFlag": true - }, - "fileList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ItsmFileAO", - "exampleSetFlag": false - } - }, - "flag": { - "type": "string", - "extensions": { - "$hint$className": "DutyClassUserFlag" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE_IN", - "CHANGE_OUT", - "LEAVE", - "LEAVE_REPLACE" - ] - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "planDutyDuration": { - "type": "string", - "exampleSetFlag": true - }, - "startDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startDateStr": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "DutyStatus" - }, - "exampleSetFlag": true, - "enum": [ - "EXECUTED", - "EXECUTING", - "TO_BE_EXECUTED" - ] - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "DutyLogType" - }, - "exampleSetFlag": true, - "enum": [ - "FESTIVAL", - "WORKDAY" - ] - } - }, - "exampleSetFlag": false - }, - "DutyClassLogActInfoAO": { - "title": "DutyClassLogActInfoAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "info": { - "type": "string", - "exampleSetFlag": true - }, - "infoZh": { - "type": "string", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassLogActInfoSearchReq": { - "title": "DutyClassLogActInfoSearchReq", - "type": "object", - "properties": { - "dutyClassLogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassLogRelateTicketSearchReq": { - "title": "DutyClassLogRelateTicketSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "dutyClassLogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassLogTicketAO": { - "title": "DutyClassLogTicketAO", - "type": "object", - "properties": { - "assigneeGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "exampleSetFlag": true - }, - "priorityZh": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "ticketId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "ItsmModule" - }, - "exampleSetFlag": true, - "enum": [ - "CHAT", - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "DUTY_CLASS_LOG", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK" - ] - }, - "title": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassLogTicketReq": { - "title": "DutyClassLogTicketReq", - "type": "object", - "properties": { - "ticketId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "ItsmModule" - }, - "exampleSetFlag": true, - "enum": [ - "CHAT", - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "DUTY_CLASS_LOG", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK" - ] - } - }, - "exampleSetFlag": false - }, - "DutyClassLogTicketSearchReq": { - "title": "DutyClassLogTicketSearchReq", - "type": "object", - "properties": { - "assigneeGroup": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassReq": { - "title": "DutyClassReq", - "type": "object", - "properties": { - "dutyClassUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassUserReq", - "exampleSetFlag": false - } - }, - "end": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "start": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassScheduleAO": { - "title": "DutyClassScheduleAO", - "type": "object", - "properties": { - "dutyClassList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassAO", - "exampleSetFlag": false - } - }, - "dutyClassUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassUserAO", - "exampleSetFlag": false - } - }, - "dutyId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dutyName": { - "type": "string", - "exampleSetFlag": true - }, - "end": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "notifyBeforeEnd": { - "type": "string", - "exampleSetFlag": true - }, - "notifyBeforeStart": { - "type": "string", - "exampleSetFlag": true - }, - "repeatCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "repeatRule": { - "$ref": "#/components/schemas/RepeatRule", - "exampleSetFlag": true - }, - "start": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "DutyClassScheduleType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "MANUAL" - ] - } - }, - "exampleSetFlag": false - }, - "DutyClassScheduleReq": { - "title": "DutyClassScheduleReq", - "type": "object", - "properties": { - "dutyClassIdList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "dutyClassUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassUserReq", - "exampleSetFlag": false - } - }, - "dutyId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "end": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "repeatCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "repeatRule": { - "$ref": "#/components/schemas/RepeatRule", - "exampleSetFlag": true - }, - "start": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "DutyClassScheduleType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "MANUAL" - ] - } - }, - "exampleSetFlag": false - }, - "DutyClassSearchReq": { - "title": "DutyClassSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "end": { - "type": "string", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "name": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "start": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassUserAO": { - "title": "DutyClassUserAO", - "type": "object", - "properties": { - "flag": { - "type": "string", - "extensions": { - "$hint$className": "DutyClassUserFlag" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE_IN", - "CHANGE_OUT", - "LEAVE", - "LEAVE_REPLACE" - ] - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "groupTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "signInTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "signOutTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyClassUserReq": { - "title": "DutyClassUserReq", - "type": "object", - "properties": { - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyCountAO": { - "title": "DutyCountAO", - "type": "object", - "properties": { - "actualDutyDate": { - "type": "string", - "exampleSetFlag": true - }, - "actualDutyDateCn": { - "type": "string", - "exampleSetFlag": true - }, - "actualDutyDateEn": { - "type": "string", - "exampleSetFlag": true - }, - "changeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "classUserIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "dutyClassUserIds": { - "type": "string", - "exampleSetFlag": true - }, - "dutyCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dutyDate": { - "type": "string", - "exampleSetFlag": true - }, - "endDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "lateCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "leaveCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "leaveEarlyCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ofDutyTables": { - "type": "string", - "exampleSetFlag": true - }, - "ofShift": { - "type": "string", - "exampleSetFlag": true - }, - "planDutyDate": { - "type": "string", - "exampleSetFlag": true - }, - "signInTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "signOutTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - }, - "workOvertimeCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyCountSearchReq": { - "title": "DutyCountSearchReq", - "type": "object", - "properties": { - "dutyClassNames": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "dutyNames": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "dutyNamesLimit": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "exportAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "users": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "usersLimit": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "zoneId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyFestivalAO": { - "title": "DutyFestivalAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "endDate": { - "type": "string", - "exampleSetFlag": true - }, - "festivalDate": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isFixed": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "isFixedZh": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "needWorkDays": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "startDate": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "DutyFestivalType" - }, - "exampleSetFlag": true, - "enum": [ - "HOLIDAY", - "NEED_WORK" - ] - }, - "typeZh": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "workLocationIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "workLocationName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyFestivalReq": { - "title": "DutyFestivalReq", - "type": "object", - "properties": { - "endDate": { - "type": "string", - "exampleSetFlag": true - }, - "festivalDate": { - "type": "string", - "exampleSetFlag": true - }, - "isFixed": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "needWorkDays": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "startDate": { - "type": "string", - "exampleSetFlag": true - }, - "workLocationIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "DutyFestivalSearchReq": { - "title": "DutyFestivalSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "festivalName": { - "type": "string", - "exampleSetFlag": true - }, - "isFixed": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "DutyFestivalType" - }, - "exampleSetFlag": true, - "enum": [ - "HOLIDAY", - "NEED_WORK" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "workLocationIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "DutyLogReq": { - "title": "DutyLogReq", - "type": "object", - "properties": { - "detail": { - "type": "string", - "exampleSetFlag": true - }, - "fileList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ItsmFileReq", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "DutyLogSearchReq": { - "title": "DutyLogSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "dutyClassName": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dutyIdList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "endDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endDateStr": { - "type": "string", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "startDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startDateStr": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyReq": { - "title": "DutyReq", - "type": "object", - "properties": { - "name": { - "type": "string", - "exampleSetFlag": true - }, - "privilegeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PrivilegeReq", - "exampleSetFlag": false - } - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "ITSMVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "ORG", - "USER" - ] - }, - "workDateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "workLocationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutySearchReq": { - "title": "DutySearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "ITSMVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "ORG", - "USER" - ] - }, - "workDateName": { - "type": "string", - "exampleSetFlag": true - }, - "workLocationName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyWorkDateAO": { - "title": "DutyWorkDateAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dutyWorkDateItemVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyWorkDateItemAO", - "exampleSetFlag": false - } - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "standardTimeEnd": { - "type": "string", - "exampleSetFlag": true - }, - "standardTimeStart": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "DutyWorkDateType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL_DAY", - "STANDARD" - ] - }, - "typeZh": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyWorkDateItemAO": { - "title": "DutyWorkDateItemAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "end": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isWeekday": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "isWeekdayZh": { - "type": "string", - "exampleSetFlag": true - }, - "numOfWeek": { - "type": "string", - "extensions": { - "$hint$className": "Week" - }, - "exampleSetFlag": true, - "enum": [ - "FRIDAY", - "MONDAY", - "SATURDAY", - "SUNDAY", - "THURSDAY", - "TUESDAY", - "WEDNESDAY" - ] - }, - "numOfWeekZh": { - "type": "string", - "exampleSetFlag": true - }, - "start": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "DutyWorkDateItemType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL_DAY", - "CUSTOM", - "HOLIDAY", - "STANDARD" - ] - }, - "typeZh": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "workDateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyWorkDateItemReq": { - "title": "DutyWorkDateItemReq", - "type": "object", - "properties": { - "end": { - "type": "string", - "exampleSetFlag": true - }, - "isWeekday": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "numOfWeek": { - "type": "string", - "extensions": { - "$hint$className": "Week" - }, - "exampleSetFlag": true, - "enum": [ - "FRIDAY", - "MONDAY", - "SATURDAY", - "SUNDAY", - "THURSDAY", - "TUESDAY", - "WEDNESDAY" - ] - }, - "start": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "DutyWorkDateItemType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL_DAY", - "CUSTOM", - "HOLIDAY", - "STANDARD" - ] - } - }, - "exampleSetFlag": false - }, - "DutyWorkDateReq": { - "title": "DutyWorkDateReq", - "type": "object", - "properties": { - "dutyWorkDateItemForms": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyWorkDateItemReq", - "exampleSetFlag": false - } - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "standardTimeEnd": { - "type": "string", - "exampleSetFlag": true - }, - "standardTimeStart": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "DutyWorkDateType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL_DAY", - "STANDARD" - ] - } - }, - "exampleSetFlag": false - }, - "DutyWorkDateSearchReq": { - "title": "DutyWorkDateSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "dutyIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "DutyWorkDateType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL_DAY", - "STANDARD" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyWorkLocationAO": { - "title": "DutyWorkLocationAO", - "type": "object", - "properties": { - "area": { - "type": "string", - "exampleSetFlag": true - }, - "areaZh": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "location": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "timeZone": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyWorkLocationReq": { - "title": "DutyWorkLocationReq", - "type": "object", - "properties": { - "area": { - "type": "string", - "exampleSetFlag": true - }, - "location": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "timeZone": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DutyWorkLocationSearchReq": { - "title": "DutyWorkLocationSearchReq", - "type": "object", - "properties": { - "area": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "location": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "timeZone": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "DynamicColumnAO": { - "title": "DynamicColumnAO", - "type": "object", - "properties": { - "column": { - "type": "string", - "exampleSetFlag": true - }, - "label": { - "type": "string", - "exampleSetFlag": true - }, - "labelCn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "EmailParseConfigAO": { - "title": "EmailParseConfigAO", - "type": "object", - "properties": { - "bizCategory": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryGroup": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "emailAccount": { - "type": "string", - "exampleSetFlag": true - }, - "emailPassword": { - "type": "string", - "exampleSetFlag": true - }, - "emailSignature": { - "type": "string", - "exampleSetFlag": true - }, - "emailType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isDelete": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "netstat": { - "type": "string", - "extensions": { - "$hint$className": "EmailParseNetstat" - }, - "exampleSetFlag": true, - "enum": [ - "FAIL", - "NA", - "SUCCESS" - ] - }, - "netstatFail": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "port": { - "type": "string", - "exampleSetFlag": true - }, - "protocol": { - "type": "string", - "extensions": { - "$hint$className": "EmailProtocol" - }, - "exampleSetFlag": true, - "enum": [ - "imap", - "outlook", - "pop" - ] - }, - "server": { - "type": "string", - "exampleSetFlag": true - }, - "smtpPort": { - "type": "string", - "exampleSetFlag": true - }, - "smtpServer": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "EmailConfigStatusEnum" - }, - "exampleSetFlag": true, - "enum": [ - "CLOSE", - "OPEN" - ] - }, - "treeBizCategoryIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "EmailParseConfigReq": { - "title": "EmailParseConfigReq", - "type": "object", - "properties": { - "emailAccount": { - "type": "string", - "exampleSetFlag": true - }, - "isDelete": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "EmailParseFilterAO": { - "title": "EmailParseFilterAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "filterField": { - "type": "string", - "extensions": { - "$hint$className": "EmailFilterField" - }, - "exampleSetFlag": true, - "enum": [ - "EMAIL_ACCOUNT", - "SUBJECT" - ] - }, - "filterValue": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isDelete": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "EmailFilterStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CLOSE", - "OPEN" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "EmailParseFilterReq": { - "title": "EmailParseFilterReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "exampleSetFlag": true - }, - "filterField": { - "type": "string", - "extensions": { - "$hint$className": "EmailFilterField" - }, - "exampleSetFlag": true, - "enum": [ - "EMAIL_ACCOUNT", - "SUBJECT" - ] - }, - "filterValue": { - "type": "string", - "exampleSetFlag": true - }, - "isDelete": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "EmailFilterStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CLOSE", - "OPEN" - ] - } - }, - "exampleSetFlag": false - }, - "EmailParseHistoryAO": { - "title": "EmailParseHistoryAO", - "type": "object", - "properties": { - "attachment": { - "type": "string", - "exampleSetFlag": true - }, - "content": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "failReason": { - "type": "string", - "exampleSetFlag": true - }, - "from": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isSuccess": { - "type": "string", - "extensions": { - "$hint$className": "EmailParseSuccess" - }, - "exampleSetFlag": true, - "enum": [ - "FAIL", - "PARSING", - "SUCCESS" - ] - }, - "messageId": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "subject": { - "type": "string", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - }, - "to": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "EmailParseHistoryReq": { - "title": "EmailParseHistoryReq", - "type": "object", - "properties": { - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "from": { - "type": "string", - "exampleSetFlag": true - }, - "isSuccess": { - "type": "string", - "extensions": { - "$hint$className": "EmailParseSuccess" - }, - "exampleSetFlag": true, - "enum": [ - "FAIL", - "PARSING", - "SUCCESS" - ] - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "subject": { - "type": "string", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - }, - "to": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "EmailParseKeywordAO": { - "title": "EmailParseKeywordAO", - "type": "object", - "properties": { - "bizCategory": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryGroup": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isDelete": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "keywords": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "EmailConfigStatusEnum" - }, - "exampleSetFlag": true, - "enum": [ - "CLOSE", - "OPEN" - ] - }, - "treeBizCategoryIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "EmailParseKeywordBizAO": { - "title": "EmailParseKeywordBizAO", - "type": "object", - "properties": { - "bizCategoryGroupVOS": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryGroupAO", - "exampleSetFlag": false - } - }, - "groupVO": { - "$ref": "#/components/schemas/BizCategoryGroupAO", - "exampleSetFlag": true - }, - "groups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "keywordVO": { - "$ref": "#/components/schemas/EmailParseKeywordAO", - "exampleSetFlag": true - }, - "members": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "membersEllipsis": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "parentName": { - "type": "string", - "exampleSetFlag": true - }, - "parentNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "treeBizCategoryIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "BizCategoryVisilbity" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "COMPANY", - "DEPARTMENT", - "GROUP", - "USER" - ] - }, - "visibilityDepartLis": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/GovernanceDepartMentAO", - "exampleSetFlag": false - } - }, - "visibilityGroupList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/UserGroupAO", - "exampleSetFlag": false - } - }, - "visibilityInfo": { - "type": "string", - "exampleSetFlag": true - }, - "visibilityTenantList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/GovernanceTenantInfoAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "EmailParseKeywordReq": { - "title": "EmailParseKeywordReq", - "type": "object", - "properties": { - "bizCategoryDefaultId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "departments": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "groupIds": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "groups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "preference": { - "type": "boolean", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "BizCategoryVisilbity" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "COMPANY", - "DEPARTMENT", - "GROUP", - "USER" - ] - }, - "visibilityCompanyList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityDepartmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityGroupList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "visibilityUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "EmailSendReq": { - "title": "EmailSendReq", - "type": "object", - "properties": { - "bcc": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "cc": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "emailTemplate": { - "type": "string", - "extensions": { - "$hint$className": "EmailTemplate" - }, - "exampleSetFlag": true, - "enum": [ - "NPS_COMPLETE_NOTIFY", - "XFS_SUBMITTER_NOTIFY" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "paramMap": { - "type": "object", - "exampleSetFlag": true - }, - "subject": { - "type": "string", - "exampleSetFlag": true - }, - "to": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "EmailTokenForm": { - "title": "EmailTokenForm", - "type": "object", - "properties": { - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType4App" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "KNOWLEDGE", - "PROBLEM", - "SERVICE_REQUEST" - ] - }, - "token": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "Executable": { - "title": "Executable", - "type": "object", - "properties": { - "accessible": { - "type": "boolean", - "exampleSetFlag": true - }, - "annotatedExceptionTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": false - } - }, - "annotatedParameterTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": false - } - }, - "annotatedReceiverType": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": true - }, - "annotatedReturnType": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": true - }, - "annotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "declaredAnnotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "exceptionTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "Error-ModelName{namespace='java.lang', name='Class«object»'}", - "exampleSetFlag": false - } - }, - "genericExceptionTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Type", - "exampleSetFlag": false - } - }, - "genericParameterTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Type", - "exampleSetFlag": false - } - }, - "modifiers": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parameterAnnotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "array", - "exampleSetFlag": false, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - } - }, - "parameterCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parameterTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "Error-ModelName{namespace='java.lang', name='Class«object»'}", - "exampleSetFlag": false - } - }, - "parameters": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ParameterRes", - "exampleSetFlag": false - } - }, - "synthetic": { - "type": "boolean", - "exampleSetFlag": true - }, - "typeParameters": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TypeVariable«object»", - "exampleSetFlag": false - } - }, - "varArgs": { - "type": "boolean", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ExitWaitReq": { - "title": "ExitWaitReq", - "type": "object", - "properties": { - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "FileInfoAO": { - "title": "FileInfoAO", - "type": "object", - "properties": { - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileUrl": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "string", - "exampleSetFlag": true - }, - "s3Url": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "FiledAuthAO": { - "title": "FiledAuthAO", - "type": "object", - "properties": { - "disable": { - "type": "boolean", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "FormComponentAO": { - "title": "FormComponentAO", - "type": "object", - "properties": { - "label": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "FormCreateReq": { - "title": "FormCreateReq", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "FormDefinitionAO": { - "title": "FormDefinitionAO", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderPageCode": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderPageInfoId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "xbuilderProjectCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "FormDefinitionCreateReq": { - "title": "FormDefinitionCreateReq", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "FormDefinitionSearchReq": { - "title": "FormDefinitionSearchReq", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "GovernanceDepartMentAO": { - "title": "GovernanceDepartMentAO", - "type": "object", - "properties": { - "email": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameZh": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "GovernanceDeptVO": { - "title": "GovernanceDeptVO", - "type": "object", - "properties": { - "departmentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameZh": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "GovernanceTenantInfoAO": { - "title": "GovernanceTenantInfoAO", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameZh": { - "type": "string", - "exampleSetFlag": true - }, - "shortName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "GovernanceUserAO": { - "title": "GovernanceUserAO", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "email": { - "type": "string", - "exampleSetFlag": true - }, - "foreignDepartment": { - "type": "string", - "exampleSetFlag": true - }, - "foreignDepartmentNumber": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "loginName": { - "type": "string", - "exampleSetFlag": true - }, - "managerCode": { - "type": "string", - "exampleSetFlag": true - }, - "managerEmail": { - "type": "string", - "exampleSetFlag": true - }, - "managerId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "mobile": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgCode": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgName": { - "type": "string", - "exampleSetFlag": true - }, - "orgZhName": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "UserStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "DISMISS", - "INIT", - "NORMAL" - ] - }, - "userType": { - "type": "string", - "extensions": { - "$hint$className": "UserType" - }, - "exampleSetFlag": true, - "enum": [ - "HUMAN", - "ROBOT" - ] - } - }, - "exampleSetFlag": false - }, - "GovernanceUserDepartMentVO": { - "title": "GovernanceUserDepartMentVO", - "type": "object", - "properties": { - "departments": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/GovernanceDeptVO", - "exampleSetFlag": false - } - }, - "email": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameZh": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "subDepartments": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/GovernanceUserDepartMentVO", - "exampleSetFlag": false - } - }, - "userName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "HotServiceAO": { - "title": "HotServiceAO", - "type": "object", - "properties": { - "catalogs": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogAO", - "exampleSetFlag": false - } - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "count": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "hotCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "img": { - "type": "string", - "exampleSetFlag": true - }, - "imgUrl": { - "type": "string", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "HubbleResourceType": { - "title": "HubbleResourceType", - "type": "object", - "properties": { - "children": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/HubbleResourceType", - "exampleSetFlag": false - } - }, - "interval": { - "type": "string", - "exampleSetFlag": true - }, - "isLeaf": { - "type": "boolean", - "exampleSetFlag": true - }, - "labelEn": { - "type": "string", - "exampleSetFlag": true - }, - "labelZh": { - "type": "string", - "exampleSetFlag": true - }, - "seq": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "value": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncSearchReq": { - "title": "IncSearchReq", - "type": "object", - "properties": { - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "changeStatus": { - "type": "string", - "extensions": { - "$hint$className": "ChangeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - }, - "filter": { - "type": "string", - "extensions": { - "$hint$className": "Filters" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "LINKED_PB", - "MARK", - "NEED_PB" - ] - }, - "id": { - "type": "string", - "exampleSetFlag": true - }, - "incidentStatus": { - "type": "string", - "extensions": { - "$hint$className": "IncidentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - }, - "pbStatus": { - "type": "string", - "extensions": { - "$hint$className": "PbStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PriorityType" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "LOWEST", - "MEDIUM" - ] - }, - "reportedSource": { - "type": "string", - "extensions": { - "$hint$className": "SourceType" - }, - "exampleSetFlag": true, - "enum": [ - "EMAIL", - "LEC", - "LIVE_CHART", - "MONITOR_EVENT", - "PHONE", - "PORTAL", - "WEB" - ] - }, - "resolveBy": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentAO": { - "title": "IncidentAO", - "type": "object", - "properties": { - "assigneeGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeGroups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAssigneeGroupReq", - "exampleSetFlag": false - } - }, - "assigneeTo": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAttachmentAO", - "exampleSetFlag": false - } - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "businessCategory": { - "type": "string", - "extensions": { - "$hint$className": "BusinessCategoryType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION_SERVICES", - "INFRASTRACTURE_SERVICES", - "OTHER", - "WORKPLACE_SERVICES" - ] - }, - "businessCategoryCn": { - "type": "string", - "exampleSetFlag": true - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "closedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "copyAttachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAttachmentAO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "customerCompanyId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "customerCompanyName": { - "type": "string", - "exampleSetFlag": true - }, - "customerCompanyNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "customerTower": { - "type": "string", - "exampleSetFlag": true - }, - "dataSourceSys": { - "type": "string", - "extensions": { - "$hint$className": "SourceSysType" - }, - "exampleSetFlag": true, - "enum": [ - "ITIM", - "OLD_ITSM" - ] - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "docType": { - "type": "string", - "extensions": { - "$hint$className": "DocType" - }, - "exampleSetFlag": true, - "enum": [ - "CONSULT", - "INC", - "REQUIREMENT" - ] - }, - "docTypeCn": { - "type": "string", - "exampleSetFlag": true - }, - "email": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "groupId": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "impact": { - "type": "string", - "extensions": { - "$hint$className": "ImpactType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "impactUserCount": { - "type": "string", - "extensions": { - "$hint$className": "ImpactUserNumberType" - }, - "exampleSetFlag": true, - "enum": [ - "GREATER_ONE_THOUSAND", - "LESS_ONE_HUNDRED", - "LESS_ONE_THOUSAND" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "isAssigneeToServiceDesk": { - "type": "boolean", - "exampleSetFlag": true - }, - "isCollect": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isCustomerCurrent": { - "type": "boolean", - "exampleSetFlag": true - }, - "isFromServiceDesk": { - "type": "boolean", - "exampleSetFlag": true - }, - "isImpactApp": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "isImpactUser": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "mobile": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "otherReason": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PriorityType" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "LOWEST", - "MEDIUM" - ] - }, - "priorityCn": { - "type": "string", - "exampleSetFlag": true - }, - "priorityName": { - "type": "string", - "exampleSetFlag": true - }, - "reasonOfOnhold": { - "type": "string", - "extensions": { - "$hint$className": "HoldReasonType" - }, - "exampleSetFlag": true, - "enum": [ - "AWAITING_CALLER", - "AWAITING_CHANGE", - "AWAITING_PROBLEM", - "AWAITING_VENDOR", - "OTHERS" - ] - }, - "relateRequestNo": { - "type": "string", - "exampleSetFlag": true - }, - "relateTaskDefKey": { - "type": "string", - "exampleSetFlag": true - }, - "relateTaskId": { - "type": "string", - "exampleSetFlag": true - }, - "reporterId": { - "type": "string", - "exampleSetFlag": true - }, - "reporterName": { - "type": "string", - "exampleSetFlag": true - }, - "resolution": { - "$ref": "#/components/schemas/IncidentResolutionAO", - "exampleSetFlag": true - }, - "resolveBy": { - "type": "string", - "exampleSetFlag": true - }, - "resolveSlaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "resolveSlaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "resolveSlaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "resolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "resource": { - "type": "string", - "extensions": { - "$hint$className": "SourceType" - }, - "exampleSetFlag": true, - "enum": [ - "EMAIL", - "LEC", - "LIVE_CHART", - "MONITOR_EVENT", - "PHONE", - "PORTAL", - "WEB" - ] - }, - "resourceCn": { - "type": "string", - "exampleSetFlag": true - }, - "responseSlaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "responseSlaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "responseSlaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceCategoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskOwner": { - "type": "string", - "exampleSetFlag": true - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "slaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "slaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "slaTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "IncidentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - }, - "statusBeforeCancel": { - "type": "string", - "extensions": { - "$hint$className": "IncidentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - }, - "statusBeforeHoldOn": { - "type": "string", - "extensions": { - "$hint$className": "IncidentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "submitterTower": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "taskType": { - "type": "string", - "extensions": { - "$hint$className": "TaskType" - }, - "exampleSetFlag": true, - "enum": [ - "TASK_MANUAL", - "TASK_SERVICE" - ] - }, - "taskTypeCn": { - "type": "string", - "exampleSetFlag": true - }, - "taskTypeEn": { - "type": "string", - "exampleSetFlag": true - }, - "taskTypeZh": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "treeBizCategoryIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "urgency": { - "type": "string", - "extensions": { - "$hint$className": "UrgencyType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "urgencyCn": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - }, - "viewStartTime": { - "type": "string", - "exampleSetFlag": true - }, - "vip": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoV2Type" - }, - "exampleSetFlag": true, - "enum": [ - "NO", - "YES" - ] - }, - "vipCn": { - "type": "string", - "exampleSetFlag": true - }, - "vipEn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentActivityAO": { - "title": "IncidentActivityAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "descriptionEn": { - "type": "string", - "exampleSetFlag": true - }, - "descriptionZh": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "inid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "richText": { - "type": "boolean", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "ActivityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALERT", - "ASSIGNED", - "CANCEL", - "CLOSE", - "COMMENT", - "CREATE", - "DISTRIBUTE", - "HANDLE", - "ON_HOLD", - "REOPEN", - "RESOLVED", - "SEND_BACK", - "SWITCH", - "TRANSFER", - "TRANSFER_TO_ALI", - "UPDATE", - "UPGRADE", - "USER_CLOSE", - "WAITING_FOR_ASSIGNED" - ] - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentActivitySearchForm": { - "title": "IncidentActivitySearchForm", - "type": "object", - "properties": { - "incNo": { - "type": "string", - "exampleSetFlag": true - }, - "inid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentAssigneeGroupReq": { - "title": "IncidentAssigneeGroupReq", - "type": "object", - "properties": { - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "treeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentAttachmentAO": { - "title": "IncidentAttachmentAO", - "type": "object", - "properties": { - "commentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fileType": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "$ref": "#/components/schemas/JSON", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "inid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "inline": { - "type": "boolean", - "exampleSetFlag": true - }, - "inlineId": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "response": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "s3Key": { - "type": "string", - "exampleSetFlag": true - }, - "s3Url": { - "type": "string", - "exampleSetFlag": true - }, - "showDownload": { - "type": "boolean", - "exampleSetFlag": true - }, - "size": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentAttachmentReq": { - "title": "IncidentAttachmentReq", - "type": "object", - "properties": { - "contentType": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileS3Type": { - "type": "string", - "extensions": { - "$hint$className": "FileS3Type" - }, - "exampleSetFlag": true, - "enum": [ - "AUDIO", - "DOC", - "IMAGE", - "VIDEO" - ] - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "key": { - "type": "string", - "exampleSetFlag": true - }, - "url": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentBatchAssignForm": { - "title": "IncidentBatchAssignForm", - "type": "object", - "properties": { - "assigneeGroup": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "assigneeGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeType": { - "type": "string", - "extensions": { - "$hint$className": "AssigneeType" - }, - "exampleSetFlag": true, - "enum": [ - "FIRST_LINE", - "SECOND_LINE" - ] - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentCancelFrom": { - "title": "IncidentCancelFrom", - "type": "object", - "properties": { - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentCiAO": { - "title": "IncidentCiAO", - "type": "object", - "properties": { - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiTypeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentCiRelationAO": { - "title": "IncidentCiRelationAO", - "type": "object", - "properties": { - "ciId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataJson": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "$ref": "#/components/schemas/JSON", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentCiRelationReq": { - "title": "IncidentCiRelationReq", - "type": "object", - "properties": { - "ciId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "exampleSetFlag": true - }, - "formJson": { - "$ref": "#/components/schemas/JSON", - "exampleSetFlag": true - }, - "incId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentCiReq": { - "title": "IncidentCiReq", - "type": "object", - "properties": { - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiTypeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentCiSearchReq": { - "title": "IncidentCiSearchReq", - "type": "object", - "properties": { - "incId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentCommentAO": { - "title": "IncidentCommentAO", - "type": "object", - "properties": { - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "inid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentCommentActivityAO": { - "title": "IncidentCommentActivityAO", - "type": "object", - "properties": { - "attachments": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAttachmentAO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "info": { - "type": "string", - "exampleSetFlag": true - }, - "infoZh": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "CommentActivityType" - }, - "exampleSetFlag": true, - "enum": [ - "ACTIVITY", - "ALERT", - "COMMENT" - ] - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentCommentCreateReq": { - "title": "IncidentCommentCreateReq", - "type": "object", - "properties": { - "attachmentIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "attachments": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAttachmentReq", - "exampleSetFlag": false - } - }, - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "inid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentCreateReq": { - "title": "IncidentCreateReq", - "type": "object", - "properties": { - "assigneeGroups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAssigneeGroupReq", - "exampleSetFlag": false - } - }, - "assigneeTo": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAttachmentReq", - "exampleSetFlag": false - } - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCiReq", - "exampleSetFlag": false - } - }, - "customerCompanyId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "customerCompanyName": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "docType": { - "type": "string", - "extensions": { - "$hint$className": "DocType" - }, - "exampleSetFlag": true, - "enum": [ - "CONSULT", - "INC", - "REQUIREMENT" - ] - }, - "emailOpen": { - "type": "boolean", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "impact": { - "type": "string", - "extensions": { - "$hint$className": "ImpactType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "impactUserCount": { - "type": "string", - "extensions": { - "$hint$className": "ImpactUserNumberType" - }, - "exampleSetFlag": true, - "enum": [ - "GREATER_ONE_THOUSAND", - "LESS_ONE_HUNDRED", - "LESS_ONE_THOUSAND" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "isImpactApp": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "isImpactUser": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "kmFeedBack": { - "type": "boolean", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PriorityType" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "LOWEST", - "MEDIUM" - ] - }, - "reasonOfReopen": { - "type": "string", - "exampleSetFlag": true - }, - "relateRequestNo": { - "type": "string", - "exampleSetFlag": true - }, - "relateTaskDefKey": { - "type": "string", - "exampleSetFlag": true - }, - "relateTaskId": { - "type": "string", - "exampleSetFlag": true - }, - "relateTicketForms": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentRelateTicketReq", - "exampleSetFlag": false - } - }, - "reopenIncId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "reporterId": { - "type": "string", - "exampleSetFlag": true - }, - "resource": { - "type": "string", - "extensions": { - "$hint$className": "SourceType" - }, - "exampleSetFlag": true, - "enum": [ - "EMAIL", - "LEC", - "LIVE_CHART", - "MONITOR_EVENT", - "PHONE", - "PORTAL", - "WEB" - ] - }, - "serviceCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "slaId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sourceApp": { - "type": "string", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "taskType": { - "type": "string", - "extensions": { - "$hint$className": "TaskType" - }, - "exampleSetFlag": true, - "enum": [ - "TASK_MANUAL", - "TASK_SERVICE" - ] - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "urgency": { - "type": "string", - "extensions": { - "$hint$className": "UrgencyType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - "exampleSetFlag": false - }, - "IncidentEntryAO": { - "title": "IncidentEntryAO", - "type": "object", - "properties": { - "appName": { - "type": "string", - "exampleSetFlag": true - }, - "assignedGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignedGroupId": { - "type": "string", - "exampleSetFlag": true - }, - "assignedSupportCompany": { - "type": "string", - "exampleSetFlag": true - }, - "assignedSupportOrganization": { - "type": "string", - "exampleSetFlag": true - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeLoginId": { - "type": "string", - "exampleSetFlag": true - }, - "incidentId": { - "type": "string", - "exampleSetFlag": true - }, - "lastModifiedDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "notes": { - "type": "string", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "priorityName": { - "type": "string", - "extensions": { - "$hint$className": "PriorityType" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "LOWEST", - "MEDIUM" - ] - }, - "reortSourcename": { - "type": "string", - "extensions": { - "$hint$className": "SourceType" - }, - "exampleSetFlag": true, - "enum": [ - "EMAIL", - "LIVE_CHART", - "MONITOR_EVENT", - "PHONE", - "WEB" - ] - }, - "reportSource": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "resolution": { - "type": "string", - "exampleSetFlag": true - }, - "rootCause": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "rootCauseName": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "statusName": { - "type": "string", - "extensions": { - "$hint$className": "IncidentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - }, - "statusReason": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "submitDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "updateTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentFavouriteAO": { - "title": "IncidentFavouriteAO", - "type": "object", - "properties": { - "createAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incidentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incidentNo": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentNoVO": { - "title": "IncidentNoVO", - "type": "object", - "properties": { - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentPageReq": { - "title": "IncidentPageReq", - "type": "object", - "properties": { - "assignGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "assigneeUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "demanderSubmitter": { - "type": "string", - "exampleSetFlag": true - }, - "deptIds": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "endCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "incidentNoFull": { - "type": "string", - "exampleSetFlag": true - }, - "isFromOutTicket": { - "type": "boolean", - "exampleSetFlag": true - }, - "isTrueScaleAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "query": { - "type": "string", - "exampleSetFlag": true - }, - "queryType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "startCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTimeBegin": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTimeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentPageSearchReq": { - "title": "IncidentPageSearchReq", - "type": "object", - "properties": { - "assigneeGroup": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "assigneeQueryType": { - "type": "string", - "extensions": { - "$hint$className": "AssigneeQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "IN_GROUP_NOT_ASSIGNEE", - "TO_ME", - "TO_MY_GROUP" - ] - }, - "assigneeQueryTypeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "IN_GROUP_NOT_ASSIGNEE", - "TO_ME", - "TO_MY_GROUP" - ] - } - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "businessCategory": { - "type": "string", - "extensions": { - "$hint$className": "BusinessCategoryType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION_SERVICES", - "INFRASTRACTURE_SERVICES", - "OTHER", - "WORKPLACE_SERVICES" - ] - }, - "closedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "created_by": { - "type": "string", - "exampleSetFlag": true - }, - "dataSourceSys": { - "type": "string", - "extensions": { - "$hint$className": "SourceSysType" - }, - "exampleSetFlag": true, - "enum": [ - "ITIM", - "OLD_ITSM" - ] - }, - "deptIds": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "docType": { - "type": "string", - "extensions": { - "$hint$className": "DocType" - }, - "exampleSetFlag": true, - "enum": [ - "CONSULT", - "INC", - "REQUIREMENT" - ] - }, - "docTypeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CONSULT", - "INC", - "REQUIREMENT" - ] - } - }, - "endCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "exportAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "incidentNoFull": { - "type": "string", - "exampleSetFlag": true - }, - "isRelate": { - "type": "boolean", - "exampleSetFlag": true - }, - "isTrueScaleAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "nos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PriorityType" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "LOWEST", - "MEDIUM" - ] - }, - "priorityList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "LOWEST", - "MEDIUM" - ] - } - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "query": { - "type": "string", - "exampleSetFlag": true - }, - "relateCiId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "relateRequestNo": { - "type": "string", - "exampleSetFlag": true - }, - "reporterId": { - "type": "string", - "exampleSetFlag": true - }, - "resolveTimeBegin": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "resolveTimeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "resolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "resource": { - "type": "string", - "extensions": { - "$hint$className": "SourceType" - }, - "exampleSetFlag": true, - "enum": [ - "EMAIL", - "LEC", - "LIVE_CHART", - "MONITOR_EVENT", - "PHONE", - "PORTAL", - "WEB" - ] - }, - "searchType": { - "type": "string", - "extensions": { - "$hint$className": "IncidentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - }, - "serviceCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "slaStatusList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - } - }, - "sourceList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "EMAIL", - "LEC", - "LIVE_CHART", - "MONITOR_EVENT", - "PHONE", - "PORTAL", - "WEB" - ] - } - }, - "startCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTimeBegin": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTimeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "IncidentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - }, - "statusList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - } - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "taskQuery": { - "type": "string", - "exampleSetFlag": true - }, - "taskType": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "TASK_MANUAL", - "TASK_SERVICE" - ] - } - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "urgency": { - "type": "string", - "extensions": { - "$hint$className": "UrgencyType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - }, - "vip": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoV2Type" - }, - "exampleSetFlag": true, - "enum": [ - "NO", - "YES" - ] - } - }, - "exampleSetFlag": false - }, - "IncidentPrioritySumAO": { - "title": "IncidentPrioritySumAO", - "type": "object", - "properties": { - "p1": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "p2": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "p3": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "p4": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "total": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentProcessReq": { - "title": "IncidentProcessReq", - "type": "object", - "properties": { - "actionType": { - "type": "string", - "extensions": { - "$hint$className": "ActionType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCEL", - "CLOSE", - "COMMENT", - "CREATE", - "DISPATCH", - "HANDLE", - "ON_HOLD", - "REOPEN", - "RESOLVED", - "RE_HANDLE", - "SEND_BACK", - "SWITCH", - "TRANSFER", - "TRANSFER_TO_ALI", - "UPDATE", - "UPGRADE", - "USER_CLOSE", - "VIEW" - ] - }, - "assigneeGroup": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "assigneeGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeGroups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAssigneeGroupReq", - "exampleSetFlag": false - } - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAttachmentReq", - "exampleSetFlag": false - } - }, - "batchSkipSaveRelationInfo": { - "type": "boolean", - "exampleSetFlag": true - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCiReq", - "exampleSetFlag": false - } - }, - "closeReason": { - "type": "string", - "extensions": { - "$hint$className": "CloseReason" - }, - "exampleSetFlag": true, - "enum": [ - "NOT_NEED_RESOLVED", - "OTHER", - "RESOLVED" - ] - }, - "closeReasonOther": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataSourceSys": { - "type": "string", - "extensions": { - "$hint$className": "SourceSysType" - }, - "exampleSetFlag": true, - "enum": [ - "ITIM", - "OLD_ITSM" - ] - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "docType": { - "type": "string", - "extensions": { - "$hint$className": "DocType" - }, - "exampleSetFlag": true, - "enum": [ - "CONSULT", - "INC", - "REQUIREMENT" - ] - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "impact": { - "type": "string", - "extensions": { - "$hint$className": "ImpactType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "impactUserCount": { - "type": "string", - "extensions": { - "$hint$className": "ImpactUserNumberType" - }, - "exampleSetFlag": true, - "enum": [ - "GREATER_ONE_THOUSAND", - "LESS_ONE_HUNDRED", - "LESS_ONE_THOUSAND" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "isImpactApp": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "isImpactUser": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "otherReason": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PriorityType" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "LOWEST", - "MEDIUM" - ] - }, - "reasonOfOnhold": { - "type": "string", - "extensions": { - "$hint$className": "HoldReasonType" - }, - "exampleSetFlag": true, - "enum": [ - "AWAITING_CALLER", - "AWAITING_CHANGE", - "AWAITING_PROBLEM", - "AWAITING_VENDOR", - "OTHERS" - ] - }, - "reasonOfReopen": { - "type": "string", - "exampleSetFlag": true - }, - "reporterId": { - "type": "string", - "exampleSetFlag": true - }, - "resolution": { - "$ref": "#/components/schemas/IncidentResolutionSaveReq", - "exampleSetFlag": true - }, - "resolveBy": { - "type": "string", - "exampleSetFlag": true - }, - "resolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "resource": { - "type": "string", - "extensions": { - "$hint$className": "SourceType" - }, - "exampleSetFlag": true, - "enum": [ - "EMAIL", - "LEC", - "LIVE_CHART", - "MONITOR_EVENT", - "PHONE", - "PORTAL", - "WEB" - ] - }, - "serviceCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "IncidentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "urgency": { - "type": "string", - "extensions": { - "$hint$className": "UrgencyType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - "exampleSetFlag": false - }, - "IncidentRelateTicketAO": { - "title": "IncidentRelateTicketAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "hasGraph": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "priority": { - "type": "object", - "exampleSetFlag": true - }, - "relateSys": { - "type": "string", - "extensions": { - "$hint$className": "PbRelateTicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "ITPB", - "KNOWLEDGE", - "TASK", - "UNKNOWN" - ] - }, - "relateSysTicketNo": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "object", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentRelateTicketReq": { - "title": "IncidentRelateTicketReq", - "type": "object", - "properties": { - "incId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateSys": { - "type": "string", - "extensions": { - "$hint$className": "PbRelateTicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "ITPB", - "KNOWLEDGE", - "TASK", - "UNKNOWN" - ] - }, - "relateSysTicketNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentRelateTicketSearchReq": { - "title": "IncidentRelateTicketSearchReq", - "type": "object", - "properties": { - "incId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateSys": { - "type": "string", - "extensions": { - "$hint$className": "PbRelateTicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "ITPB", - "KNOWLEDGE", - "TASK", - "UNKNOWN" - ] - }, - "ticketIdList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "IncidentReportAO": { - "title": "IncidentReportAO", - "type": "object", - "properties": { - "allCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "allIncidentCountByDay": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "object", - "additionalProperties": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - }, - "exampleSetFlag": false - } - }, - "allIncidentCountByStatus": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentStatusCountAO", - "exampleSetFlag": false - } - }, - "allResolvedCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "aoaOverdueRate": { - "type": "string", - "exampleSetFlag": true - }, - "averageCountByDay": { - "type": "number", - "format": "double", - "exampleSetFlag": true - }, - "averageResolvedCountByDay": { - "type": "number", - "format": "double", - "exampleSetFlag": true - }, - "overdueRate": { - "type": "string", - "exampleSetFlag": true - }, - "priorityPercentageList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "object", - "additionalProperties": { - "type": "string", - "exampleSetFlag": false - }, - "exampleSetFlag": false - } - }, - "qoqByWeek": { - "type": "string", - "exampleSetFlag": true - }, - "resolvedCountByDay": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "object", - "additionalProperties": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - }, - "exampleSetFlag": false - } - }, - "resourceReports": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentResourceReportAO", - "exampleSetFlag": false - } - }, - "satisfactionPercentageList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SatisfactionPercentageAO", - "exampleSetFlag": false - } - }, - "yoyByMonth": { - "type": "string", - "exampleSetFlag": true - }, - "yoyOverdueRate": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentReportSearchReq": { - "title": "IncidentReportSearchReq", - "type": "object", - "properties": { - "assigneeGroup": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataSourceSys": { - "type": "string", - "extensions": { - "$hint$className": "SourceSysType" - }, - "exampleSetFlag": true, - "enum": [ - "ITIM", - "OLD_ITSM" - ] - }, - "timeBegin": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "timeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "zoneId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentResolutionAO": { - "title": "IncidentResolutionAO", - "type": "object", - "properties": { - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "optionConfigId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "optionConfigTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "resolutionCode": { - "type": "string", - "extensions": { - "$hint$className": "SolutionCodeType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTH_ACCOUNT_LOCKED", - "AUTH_AUTHORIZATION_DESIGN_DEFECT", - "AUTH_LACK_OF_AUTHORIZATION", - "AUTH_USER_FORGET_PASSWORD", - "DATA_BIZ_WORKFLOW_ISSUE", - "DATA_SELF_MAINTENANCE", - "DATA_TECH_ISSUE", - "DATA_UNCLEAR_DATA_PROCESS", - "INFRA_OTHER", - "INQUIRY_ID_AUTH_ROLE_INFO", - "INQUIRY_SYSTEM_VISIBILITY", - "INQUIRY_USER_ABILITY", - "SYS_PERFORMANCE_CLIENT_SIDE", - "SYS_PERFORMANCE_NETWORK", - "SYS_PERFORMANCE_SERVER_SIDE", - "TECH_CODE_DEFECT", - "TECH_CONFIGURATION_ERROR", - "TECH_DB_FAILURE", - "TECH_DEPLOYMENT_ERROR", - "TECH_HARDWARE_FAILURE", - "TECH_NETWORK_FAILURE", - "TECH_OS_FAILURE", - "TECH_POWER_FAILURE", - "TECH_PRODUCT_BUG", - "TECH_TRANSACTION_DATA_ISSUE", - "USER_BIZ_PROCESS_DESIGN_ISSUE", - "USER_CLIENT_CONFIG_ERROR", - "USER_OPERATIONAL_ERROR", - "USER_PARTNER_DATA_ISSUE" - ] - }, - "resolutionType": { - "type": "string", - "extensions": { - "$hint$className": "SolutionType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTHORIZATION_RELATED_ISSUE", - "DATA_RELATED_ISSUE", - "ISSUES_CAUSED_BY_PERFORMANCE", - "OTHER_INFRASTRUCTURE_ISSUES", - "TECHNICAL_ISSUES_INCLUDING_FUNCTION_OR_INFRASTRUCTURE_FAILURE", - "THE_ISSUES_CAUSED_BY_USERS_SIDE", - "USERS_INQUIRY_HANDLING_NOT_A_ISSUE" - ] - }, - "resolveBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentResolutionSaveReq": { - "title": "IncidentResolutionSaveReq", - "type": "object", - "properties": { - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "optionConfigId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "resolutionCode": { - "type": "string", - "extensions": { - "$hint$className": "SolutionCodeType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTH_ACCOUNT_LOCKED", - "AUTH_AUTHORIZATION_DESIGN_DEFECT", - "AUTH_LACK_OF_AUTHORIZATION", - "AUTH_USER_FORGET_PASSWORD", - "DATA_BIZ_WORKFLOW_ISSUE", - "DATA_SELF_MAINTENANCE", - "DATA_TECH_ISSUE", - "DATA_UNCLEAR_DATA_PROCESS", - "INFRA_OTHER", - "INQUIRY_ID_AUTH_ROLE_INFO", - "INQUIRY_SYSTEM_VISIBILITY", - "INQUIRY_USER_ABILITY", - "SYS_PERFORMANCE_CLIENT_SIDE", - "SYS_PERFORMANCE_NETWORK", - "SYS_PERFORMANCE_SERVER_SIDE", - "TECH_CODE_DEFECT", - "TECH_CONFIGURATION_ERROR", - "TECH_DB_FAILURE", - "TECH_DEPLOYMENT_ERROR", - "TECH_HARDWARE_FAILURE", - "TECH_NETWORK_FAILURE", - "TECH_OS_FAILURE", - "TECH_POWER_FAILURE", - "TECH_PRODUCT_BUG", - "TECH_TRANSACTION_DATA_ISSUE", - "USER_BIZ_PROCESS_DESIGN_ISSUE", - "USER_CLIENT_CONFIG_ERROR", - "USER_OPERATIONAL_ERROR", - "USER_PARTNER_DATA_ISSUE" - ] - }, - "resolutionType": { - "type": "string", - "extensions": { - "$hint$className": "SolutionType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTHORIZATION_RELATED_ISSUE", - "DATA_RELATED_ISSUE", - "ISSUES_CAUSED_BY_PERFORMANCE", - "OTHER_INFRASTRUCTURE_ISSUES", - "TECHNICAL_ISSUES_INCLUDING_FUNCTION_OR_INFRASTRUCTURE_FAILURE", - "THE_ISSUES_CAUSED_BY_USERS_SIDE", - "USERS_INQUIRY_HANDLING_NOT_A_ISSUE" - ] - }, - "resolveBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentResourceReportAO": { - "title": "IncidentResourceReportAO", - "type": "object", - "properties": { - "count": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sourceType": { - "type": "string", - "extensions": { - "$hint$className": "DocType" - }, - "exampleSetFlag": true, - "enum": [ - "CONSULT", - "INC", - "REQUIREMENT" - ] - }, - "sourceTypeCount": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentSourceTypeCountAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "IncidentSearchReq": { - "title": "IncidentSearchReq", - "type": "object", - "properties": { - "conversationId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "demanderSubmitter": { - "type": "string", - "exampleSetFlag": true - }, - "incidentNos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "reporterId": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentSendBackReq": { - "title": "IncidentSendBackReq", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentSlaAO": { - "title": "IncidentSlaAO", - "type": "object", - "properties": { - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "overdueSeconds": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "overdueTime": { - "type": "string", - "exampleSetFlag": true - }, - "overdueTimeCn": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PriorityType" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "LOWEST", - "MEDIUM" - ] - }, - "priorityCn": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentSourceTypeCountAO": { - "title": "IncidentSourceTypeCountAO", - "type": "object", - "properties": { - "count": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "percentage": { - "type": "string", - "exampleSetFlag": true - }, - "sourceType": { - "type": "string", - "extensions": { - "$hint$className": "SourceType" - }, - "exampleSetFlag": true, - "enum": [ - "EMAIL", - "LEC", - "LIVE_CHART", - "MONITOR_EVENT", - "PHONE", - "PORTAL", - "WEB" - ] - } - }, - "exampleSetFlag": false - }, - "IncidentStatusCountAO": { - "title": "IncidentStatusCountAO", - "type": "object", - "properties": { - "count": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "IncidentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - } - }, - "exampleSetFlag": false - }, - "IncidentSwitchReq": { - "title": "IncidentSwitchReq", - "required": [ - "id" - ], - "type": "object", - "properties": { - "assigneeGroups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAssigneeGroupReq", - "exampleSetFlag": false - } - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentTransReq": { - "title": "IncidentTransReq", - "required": [ - "id" - ], - "type": "object", - "properties": { - "assigneeGroups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAssigneeGroupReq", - "exampleSetFlag": false - } - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "IncidentUpdateReq": { - "title": "IncidentUpdateReq", - "type": "object", - "properties": { - "assigneeGroup": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "assigneeGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeGroups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAssigneeGroupReq", - "exampleSetFlag": false - } - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAttachmentReq", - "exampleSetFlag": false - } - }, - "batchSkipSaveRelationInfo": { - "type": "boolean", - "exampleSetFlag": true - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCiReq", - "exampleSetFlag": false - } - }, - "closeReason": { - "type": "string", - "extensions": { - "$hint$className": "CloseReason" - }, - "exampleSetFlag": true, - "enum": [ - "NOT_NEED_RESOLVED", - "OTHER", - "RESOLVED" - ] - }, - "closeReasonOther": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataSourceSys": { - "type": "string", - "extensions": { - "$hint$className": "SourceSysType" - }, - "exampleSetFlag": true, - "enum": [ - "ITIM", - "OLD_ITSM" - ] - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "docType": { - "type": "string", - "extensions": { - "$hint$className": "DocType" - }, - "exampleSetFlag": true, - "enum": [ - "CONSULT", - "INC", - "REQUIREMENT" - ] - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "impact": { - "type": "string", - "extensions": { - "$hint$className": "ImpactType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "impactUserCount": { - "type": "string", - "extensions": { - "$hint$className": "ImpactUserNumberType" - }, - "exampleSetFlag": true, - "enum": [ - "GREATER_ONE_THOUSAND", - "LESS_ONE_HUNDRED", - "LESS_ONE_THOUSAND" - ] - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "isImpactApp": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "isImpactUser": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "FALSE", - "TRUE" - ] - }, - "otherReason": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PriorityType" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "LOWEST", - "MEDIUM" - ] - }, - "reasonOfOnhold": { - "type": "string", - "extensions": { - "$hint$className": "HoldReasonType" - }, - "exampleSetFlag": true, - "enum": [ - "AWAITING_CALLER", - "AWAITING_CHANGE", - "AWAITING_PROBLEM", - "AWAITING_VENDOR", - "OTHERS" - ] - }, - "reasonOfReopen": { - "type": "string", - "exampleSetFlag": true - }, - "reporterId": { - "type": "string", - "exampleSetFlag": true - }, - "resolution": { - "$ref": "#/components/schemas/IncidentResolutionSaveReq", - "exampleSetFlag": true - }, - "resolveBy": { - "type": "string", - "exampleSetFlag": true - }, - "resolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "resource": { - "type": "string", - "extensions": { - "$hint$className": "SourceType" - }, - "exampleSetFlag": true, - "enum": [ - "EMAIL", - "LEC", - "LIVE_CHART", - "MONITOR_EVENT", - "PHONE", - "PORTAL", - "WEB" - ] - }, - "serviceCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "IncidentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "ASSIGNED", - "CANCELLED", - "CLOSED", - "IN_PROCESSING", - "ON_HOLD", - "OPEN", - "RESOLVED", - "TIME_OUT", - "TRANSFER_TO_ALI", - "WAITING_FOR_ASSIGNED" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "urgency": { - "type": "string", - "extensions": { - "$hint$className": "UrgencyType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - "exampleSetFlag": false - }, - "InputStream": { - "title": "InputStream", - "type": "object", - "exampleSetFlag": false - }, - "InterfaceCallLogAO": { - "title": "InterfaceCallLogAO", - "type": "object", - "properties": { - "bizNo": { - "type": "string", - "exampleSetFlag": true - }, - "businessData": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "interfaceParams": { - "type": "string", - "exampleSetFlag": true - }, - "module": { - "type": "string", - "exampleSetFlag": true - }, - "project": { - "type": "string", - "exampleSetFlag": true - }, - "requestParams": { - "type": "string", - "exampleSetFlag": true - }, - "requestUrl": { - "type": "string", - "exampleSetFlag": true - }, - "response": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "InterfaceCallLogCreateReq": { - "title": "InterfaceCallLogCreateReq", - "type": "object", - "properties": { - "bizNo": { - "type": "string", - "exampleSetFlag": true - }, - "businessData": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "interfaceParams": { - "type": "string", - "exampleSetFlag": true - }, - "module": { - "type": "string", - "exampleSetFlag": true - }, - "project": { - "type": "string", - "exampleSetFlag": true - }, - "requestParams": { - "type": "string", - "exampleSetFlag": true - }, - "requestUrl": { - "type": "string", - "exampleSetFlag": true - }, - "response": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "InterfaceCallLogSearchReq": { - "title": "InterfaceCallLogSearchReq", - "type": "object", - "properties": { - "bizNo": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "module": { - "type": "string", - "exampleSetFlag": true - }, - "project": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "InterfaceCallLogUpdateReq": { - "title": "InterfaceCallLogUpdateReq", - "type": "object", - "properties": { - "bizNo": { - "type": "string", - "exampleSetFlag": true - }, - "businessData": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "interfaceParams": { - "type": "string", - "exampleSetFlag": true - }, - "module": { - "type": "string", - "exampleSetFlag": true - }, - "project": { - "type": "string", - "exampleSetFlag": true - }, - "requestParams": { - "type": "string", - "exampleSetFlag": true - }, - "requestUrl": { - "type": "string", - "exampleSetFlag": true - }, - "response": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ItsmConfigAO": { - "title": "ItsmConfigAO", - "type": "object", - "properties": { - "confKey": { - "type": "string", - "exampleSetFlag": true - }, - "confValue": { - "type": "string", - "exampleSetFlag": true - }, - "configType": { - "type": "string", - "extensions": { - "$hint$className": "ConfigType" - }, - "exampleSetFlag": true, - "enum": [ - "BUILT_IN", - "TENANT" - ] - }, - "fromBuiltIn": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "remarkEn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ItsmConfigCreateReq": { - "title": "ItsmConfigCreateReq", - "type": "object", - "properties": { - "confKey": { - "type": "string", - "exampleSetFlag": true - }, - "confValue": { - "type": "string", - "exampleSetFlag": true - }, - "configType": { - "type": "string", - "extensions": { - "$hint$className": "ConfigType" - }, - "exampleSetFlag": true, - "enum": [ - "BUILT_IN", - "TENANT" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "remarkEn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ItsmConfigSearchReq": { - "title": "ItsmConfigSearchReq", - "type": "object", - "properties": { - "confKey": { - "type": "string", - "exampleSetFlag": true - }, - "confType": { - "type": "string", - "extensions": { - "$hint$className": "ConfigType" - }, - "exampleSetFlag": true, - "enum": [ - "BUILT_IN", - "TENANT" - ] - }, - "confValue": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ItsmConfigUpdateReq": { - "title": "ItsmConfigUpdateReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "confKey": { - "type": "string", - "exampleSetFlag": true - }, - "confValue": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "remarkEn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ItsmFileAO": { - "title": "ItsmFileAO", - "type": "object", - "properties": { - "fileKey": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fileType": { - "type": "string", - "exampleSetFlag": true - }, - "fileUrl": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "module": { - "type": "string", - "extensions": { - "$hint$className": "ItsmModule" - }, - "exampleSetFlag": true, - "enum": [ - "CHAT", - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "DUTY_CLASS_LOG", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK" - ] - }, - "relateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "s3Key": { - "type": "string", - "exampleSetFlag": true - }, - "s3Type": { - "type": "string", - "exampleSetFlag": true - }, - "s3Url": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ItsmFileReq": { - "title": "ItsmFileReq", - "type": "object", - "properties": { - "fileKey": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fileType": { - "type": "string", - "exampleSetFlag": true - }, - "fileUrl": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "module": { - "type": "string", - "extensions": { - "$hint$className": "ItsmModule" - }, - "exampleSetFlag": true, - "enum": [ - "CHAT", - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "DUTY_CLASS_LOG", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK" - ] - }, - "relateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "s3Type": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ItsmStaticTemplateAO": { - "title": "ItsmStaticTemplateAO", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "contentEditorType": { - "type": "string", - "extensions": { - "$hint$className": "ContentEditorType" - }, - "exampleSetFlag": true, - "enum": [ - "MARKDOWN", - "RICH_TEXT" - ] - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "module": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "TemplateStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "DRAFT", - "PUBLISHED", - "RETIRED", - "WAITING_FOR_PUBLISH" - ] - }, - "templateType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ItsmStaticTemplateCreateReq": { - "title": "ItsmStaticTemplateCreateReq", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "contentEditorType": { - "type": "string", - "extensions": { - "$hint$className": "ContentEditorType" - }, - "exampleSetFlag": true, - "enum": [ - "MARKDOWN", - "RICH_TEXT" - ] - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "module": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "TemplateStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "DRAFT", - "PUBLISHED", - "RETIRED", - "WAITING_FOR_PUBLISH" - ] - }, - "templateType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ItsmStaticTemplateSearchReq": { - "title": "ItsmStaticTemplateSearchReq", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "contentEditorType": { - "type": "string", - "extensions": { - "$hint$className": "ContentEditorType" - }, - "exampleSetFlag": true, - "enum": [ - "MARKDOWN", - "RICH_TEXT" - ] - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "module": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "selfIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "TemplateStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "DRAFT", - "PUBLISHED", - "RETIRED", - "WAITING_FOR_PUBLISH" - ] - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ItsmUserAO": { - "title": "ItsmUserAO", - "type": "object", - "properties": { - "avatar": { - "type": "string", - "exampleSetFlag": true - }, - "code": { - "type": "string", - "exampleSetFlag": true - }, - "email": { - "type": "string", - "exampleSetFlag": true - }, - "gender": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "JSON": { - "title": "JSON", - "type": "object", - "exampleSetFlag": false - }, - "KmApprovalAO": { - "title": "KmApprovalAO", - "type": "object", - "properties": { - "approvalAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approvalResult": { - "type": "string", - "extensions": { - "$hint$className": "ApproveResult" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVE", - "REFUSE", - "WAITE_APPROVE" - ] - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmAttachmentAO": { - "title": "KmAttachmentAO", - "type": "object", - "properties": { - "attachPath": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "fileKey": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "step": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "uploadBy": { - "type": "string", - "exampleSetFlag": true - }, - "versionNo": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmCatalogAO": { - "title": "KmCatalogAO", - "type": "object", - "properties": { - "allKnowledgeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "attributeName": { - "type": "string", - "exampleSetFlag": true - }, - "attributeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "children": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmCatalogAO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataSource": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "descriptionEn": { - "type": "string", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "domainNames": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domainNamesCn": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domains": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "expanded": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isLeaf": { - "type": "boolean", - "exampleSetFlag": true - }, - "isTop": { - "type": "boolean", - "exampleSetFlag": true - }, - "key": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameEn": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "parentName": { - "type": "string", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmCatalogStatus" - }, - "exampleSetFlag": true, - "enum": [ - "EFFECTIVE", - "INVALID" - ] - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmCatalogCreateReq": { - "title": "KmCatalogCreateReq", - "type": "object", - "properties": { - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataSource": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "descriptionEn": { - "type": "string", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "domains": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameEn": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmCatalogSearchReq": { - "title": "KmCatalogSearchReq", - "type": "object", - "properties": { - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataSource": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentName": { - "type": "string", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmCatalogUpdateReq": { - "title": "KmCatalogUpdateReq", - "type": "object", - "properties": { - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataSource": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "descriptionEn": { - "type": "string", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "domains": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameEn": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmCommentAO": { - "title": "KmCommentAO", - "type": "object", - "properties": { - "content": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "reply": { - "type": "boolean", - "exampleSetFlag": true - }, - "replyList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmCommentAO", - "exampleSetFlag": false - } - }, - "replyTo": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CommentStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "EFFECTIVE", - "INVALID" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmCommentCreateReq": { - "title": "KmCommentCreateReq", - "type": "object", - "properties": { - "content": { - "type": "string", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "replyTo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmCommentSearchReq": { - "title": "KmCommentSearchReq", - "type": "object", - "properties": { - "content": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmItsmMyApprovedAO": { - "title": "KmItsmMyApprovedAO", - "type": "object", - "properties": { - "approvalAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approvalResult": { - "type": "string", - "extensions": { - "$hint$className": "ApproveResult" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVE", - "REFUSE", - "WAITE_APPROVE" - ] - }, - "approvalResultZh": { - "type": "string", - "exampleSetFlag": true - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "attributeName": { - "type": "string", - "exampleSetFlag": true - }, - "attributeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogName": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "domainNames": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domainNamesCn": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domains": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "keyWords": { - "type": "string", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeNo": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeAO": { - "title": "KmKnowledgeAO", - "type": "object", - "properties": { - "approveUsers": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": false - } - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "attributeName": { - "type": "string", - "exampleSetFlag": true - }, - "attributeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "catalogDescription": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogName": { - "type": "string", - "exampleSetFlag": true - }, - "catalogNameEn": { - "type": "string", - "exampleSetFlag": true - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeCiListAO", - "exampleSetFlag": false - } - }, - "content": { - "type": "string", - "exampleSetFlag": true - }, - "contentEditorType": { - "type": "string", - "extensions": { - "$hint$className": "ContentEditorType" - }, - "exampleSetFlag": true, - "enum": [ - "MARKDOWN", - "RICH_TEXT" - ] - }, - "contentEn": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "domainNames": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domainNamesCn": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domains": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "editReason": { - "type": "string", - "exampleSetFlag": true - }, - "firstAttachmentVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": false - } - }, - "hasGraph": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isMyFavourite": { - "type": "boolean", - "exampleSetFlag": true - }, - "keyWords": { - "type": "string", - "exampleSetFlag": true - }, - "kmKnowledgeTicketVoList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeTicketAO", - "exampleSetFlag": false - } - }, - "knowledgeNo": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmPrivilegeAO", - "exampleSetFlag": false - } - }, - "problemDes": { - "type": "string", - "exampleSetFlag": true - }, - "relateTicket": { - "type": "string", - "exampleSetFlag": true - }, - "remedialMeasures": { - "type": "string", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "source": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "statusEn": { - "type": "string", - "exampleSetFlag": true - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryEn": { - "type": "string", - "exampleSetFlag": true - }, - "tags": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "titleEn": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updateAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "versionNo": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "KmVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeAndCatalogSearchReq": { - "title": "KmKnowledgeAndCatalogSearchReq", - "type": "object", - "properties": { - "knowledgeSearchReq": { - "$ref": "#/components/schemas/KnowledgePortalSearchReq", - "exampleSetFlag": true - }, - "serviceCatalogSearchReq": { - "$ref": "#/components/schemas/ServiceCatalogSearchReq", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeApprovalReq": { - "title": "KmKnowledgeApprovalReq", - "type": "object", - "properties": { - "approvalAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approvalStatus": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "MY_APPROVED", - "MY_SUBMITED", - "PENDING_TO_ME" - ] - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "domain": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeApprovalUpdate": { - "title": "KmKnowledgeApprovalUpdate", - "type": "object", - "properties": { - "knowledgeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "option": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeCiAO": { - "title": "KmKnowledgeCiAO", - "type": "object", - "properties": { - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiTypeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeCiListAO": { - "title": "KmKnowledgeCiListAO", - "type": "object", - "properties": { - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeCiAO", - "exampleSetFlag": false - } - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiTypeNameCn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeCiListReq": { - "title": "KmKnowledgeCiListReq", - "type": "object", - "properties": { - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeCiReq", - "exampleSetFlag": false - } - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeCiQueryReq": { - "title": "KmKnowledgeCiQueryReq", - "type": "object", - "properties": { - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeCiReq": { - "title": "KmKnowledgeCiReq", - "type": "object", - "properties": { - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiTypeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "dataJson": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeClickCreateReq": { - "title": "KmKnowledgeClickCreateReq", - "type": "object", - "properties": { - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeCreateReq": { - "title": "KmKnowledgeCreateReq", - "type": "object", - "properties": { - "approveUsers": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "attachmentIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeCiReq", - "exampleSetFlag": false - } - }, - "content": { - "type": "string", - "exampleSetFlag": true - }, - "contentEditorType": { - "type": "string", - "extensions": { - "$hint$className": "ContentEditorType" - }, - "exampleSetFlag": true, - "enum": [ - "MARKDOWN", - "RICH_TEXT" - ] - }, - "contentEn": { - "type": "string", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "domains": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "editReason": { - "type": "string", - "exampleSetFlag": true - }, - "firstAttachListIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "keyWords": { - "type": "string", - "exampleSetFlag": true - }, - "kmKnowledgeTicketCreateFormList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeTicketCreateReq", - "exampleSetFlag": false - } - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmPrivilegeCreateReq", - "exampleSetFlag": false - } - }, - "problemDes": { - "type": "string", - "exampleSetFlag": true - }, - "relateTicket": { - "type": "string", - "exampleSetFlag": true - }, - "remedialMeasures": { - "type": "string", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "source": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryEn": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "titleEn": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "KmVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeEntityRelateAO": { - "title": "KmKnowledgeEntityRelateAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "entityAttributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "entityToAttributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "entityTypeFromId": { - "type": "string", - "extensions": { - "$hint$className": "GraphEntityRelateTypeEnum" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "KNOWLEDGE", - "PB", - "TASK" - ] - }, - "entityTypeToId": { - "type": "string", - "extensions": { - "$hint$className": "GraphEntityRelateTypeEnum" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "KNOWLEDGE", - "PB", - "TASK" - ] - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateAttributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "relateType": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeEntityRelateDataAO": { - "title": "KmKnowledgeEntityRelateDataAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "editStatus": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeEntityRelateEditStatus" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "USER_EDIT" - ] - }, - "entityFrom": { - "$ref": "#/components/schemas/KmKnowledgeGraphEntityAO", - "exampleSetFlag": true - }, - "entityFromAttributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "entityFromKey": { - "type": "string", - "exampleSetFlag": true - }, - "entityRelateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "entityTo": { - "$ref": "#/components/schemas/KmKnowledgeGraphEntityAO", - "exampleSetFlag": true - }, - "entityToAttributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "entityToKey": { - "type": "string", - "exampleSetFlag": true - }, - "entityTypeFromId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "entityTypeToId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relatePO": { - "$ref": "#/components/schemas/KmKnowledgeEntityRelateAO", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeEntityRelateDataVisibility" - }, - "exampleSetFlag": true, - "enum": [ - "HIDE", - "VISIBLE" - ] - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeEntityRelateDataSearchReq": { - "title": "KmKnowledgeEntityRelateDataSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "entityDataFromKey": { - "type": "string", - "exampleSetFlag": true - }, - "entityDataToKey": { - "type": "string", - "exampleSetFlag": true - }, - "entityRelateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "entityTypeFromId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "entityTypeFromOrToId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "entityTypeToId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeEntityRelateDataVisibility" - }, - "exampleSetFlag": true, - "enum": [ - "HIDE", - "VISIBLE" - ] - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeEntityRelateSearchReq": { - "title": "KmKnowledgeEntityRelateSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "entityTypeFromId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "entityTypeFromOrToId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "entityTypeToId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeGraphEntityAO": { - "title": "KmKnowledgeGraphEntityAO", - "type": "object", - "properties": { - "attributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "entityName": { - "type": "string", - "exampleSetFlag": true - }, - "entityNameEn": { - "type": "string", - "exampleSetFlag": true - }, - "entityType": { - "type": "string", - "extensions": { - "$hint$className": "GraphEntityRelateTypeEnum" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "KNOWLEDGE", - "PB", - "TASK" - ] - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeGraphEntityRelateDataVO": { - "title": "KmKnowledgeGraphEntityRelateDataVO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "editStatus": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeEntityRelateEditStatus" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "USER_EDIT" - ] - }, - "entityFrom": { - "$ref": "#/components/schemas/KmKnowledgeGraphEntityAO", - "exampleSetFlag": true - }, - "entityFromAttributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "entityFromKey": { - "type": "string", - "exampleSetFlag": true - }, - "entityRelateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "entityTo": { - "$ref": "#/components/schemas/KmKnowledgeGraphEntityAO", - "exampleSetFlag": true - }, - "entityToAttributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "entityToKey": { - "type": "string", - "exampleSetFlag": true - }, - "entityTypeFromId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "entityTypeToId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relatePO": { - "$ref": "#/components/schemas/KmKnowledgeEntityRelateAO", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeEntityRelateDataVisibility" - }, - "exampleSetFlag": true, - "enum": [ - "HIDE", - "VISIBLE" - ] - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeGraphEntityRelateVO": { - "title": "KmKnowledgeGraphEntityRelateVO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "entityAttributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "entityFrom": { - "$ref": "#/components/schemas/KmKnowledgeGraphEntityVO", - "exampleSetFlag": true - }, - "entityTo": { - "$ref": "#/components/schemas/KmKnowledgeGraphEntityVO", - "exampleSetFlag": true - }, - "entityToAttributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "entityTypeFromId": { - "type": "string", - "extensions": { - "$hint$className": "GraphEntityRelateTypeEnum" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "KNOWLEDGE", - "PB", - "TASK" - ] - }, - "entityTypeToId": { - "type": "string", - "extensions": { - "$hint$className": "GraphEntityRelateTypeEnum" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "KNOWLEDGE", - "PB", - "TASK" - ] - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateAttributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "relateType": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeGraphEntityVO": { - "title": "KmKnowledgeGraphEntityVO", - "type": "object", - "properties": { - "attributeArr": { - "type": "string", - "exampleSetFlag": true - }, - "entityName": { - "type": "string", - "exampleSetFlag": true - }, - "entityNameEn": { - "type": "string", - "exampleSetFlag": true - }, - "entityType": { - "type": "string", - "extensions": { - "$hint$className": "GraphEntityRelateTypeEnum" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "CI", - "INCIDENT", - "KNOWLEDGE", - "PB", - "TASK", - "USER" - ] - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgePortalAO": { - "title": "KmKnowledgePortalAO", - "type": "object", - "properties": { - "approveUsers": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": false - } - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "attributeName": { - "type": "string", - "exampleSetFlag": true - }, - "attributeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "catalogDescription": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogName": { - "type": "string", - "exampleSetFlag": true - }, - "catalogNameEn": { - "type": "string", - "exampleSetFlag": true - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeCiListAO", - "exampleSetFlag": false - } - }, - "commentCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "content": { - "type": "string", - "exampleSetFlag": true - }, - "contentEditorType": { - "type": "string", - "extensions": { - "$hint$className": "ContentEditorType" - }, - "exampleSetFlag": true, - "enum": [ - "MARKDOWN", - "RICH_TEXT" - ] - }, - "contentEn": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "domainNames": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domainNamesCn": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domains": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "editReason": { - "type": "string", - "exampleSetFlag": true - }, - "favouriteCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "firstAttachmentVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": false - } - }, - "hasEditAuth": { - "type": "boolean", - "exampleSetFlag": true - }, - "hasGraph": { - "type": "boolean", - "exampleSetFlag": true - }, - "hasVersion": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isMyFavourite": { - "type": "boolean", - "exampleSetFlag": true - }, - "isRelate": { - "type": "boolean", - "exampleSetFlag": true - }, - "keyWords": { - "type": "string", - "exampleSetFlag": true - }, - "kmKnowledgeTicketVoList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeTicketAO", - "exampleSetFlag": false - } - }, - "knowledgeNo": { - "type": "string", - "exampleSetFlag": true - }, - "likeCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmPrivilegeAO", - "exampleSetFlag": false - } - }, - "problemDes": { - "type": "string", - "exampleSetFlag": true - }, - "recordCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "relateCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "relateTicket": { - "type": "string", - "exampleSetFlag": true - }, - "remedialMeasures": { - "type": "string", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "searchCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "similarPercent": { - "type": "string", - "exampleSetFlag": true - }, - "similarity": { - "type": "number", - "format": "float", - "exampleSetFlag": true - }, - "source": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "statusEn": { - "type": "string", - "exampleSetFlag": true - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryEn": { - "type": "string", - "exampleSetFlag": true - }, - "tagVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeTagAO", - "exampleSetFlag": false - } - }, - "tags": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "titleEn": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updateAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "useCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "versionNo": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "viewCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "KmVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeSearchReq": { - "title": "KmKnowledgeSearchReq", - "type": "object", - "properties": { - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "catelogParentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "conditionList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Condition", - "exampleSetFlag": false - } - }, - "content": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "endCreateAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "keyWords": { - "type": "string", - "exampleSetFlag": true - }, - "kmNoLike": { - "type": "string", - "exampleSetFlag": true - }, - "knowledgeNo": { - "type": "string", - "exampleSetFlag": true - }, - "knowledgeNos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "pageFunc": { - "type": "string", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "source": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "startCreateAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeTagAO": { - "title": "KmKnowledgeTagAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sourceType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "tags": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeTagCreateReq": { - "title": "KmKnowledgeTagCreateReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sysTags": { - "type": "string", - "exampleSetFlag": true - }, - "tags": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeTagSearchReq": { - "title": "KmKnowledgeTagSearchReq", - "type": "object", - "properties": { - "tags": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeTicketAO": { - "title": "KmKnowledgeTicketAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "hasGraph": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeNo": { - "type": "string", - "exampleSetFlag": true - }, - "knowledgeVO": { - "$ref": "#/components/schemas/KmKnowledgeAO", - "exampleSetFlag": true - }, - "relateSys": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateSysTicketNo": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeTicketCreateReq": { - "title": "KmKnowledgeTicketCreateReq", - "type": "object", - "properties": { - "relateSys": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateSysTicketNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeTicketPortalAO": { - "title": "KmKnowledgeTicketPortalAO", - "type": "object", - "properties": { - "approveUsers": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": false - } - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "attributeName": { - "type": "string", - "exampleSetFlag": true - }, - "attributeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "catalogDescription": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogName": { - "type": "string", - "exampleSetFlag": true - }, - "catalogNameEn": { - "type": "string", - "exampleSetFlag": true - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeCiListAO", - "exampleSetFlag": false - } - }, - "content": { - "type": "string", - "exampleSetFlag": true - }, - "contentEditorType": { - "type": "string", - "extensions": { - "$hint$className": "ContentEditorType" - }, - "exampleSetFlag": true, - "enum": [ - "MARKDOWN", - "RICH_TEXT" - ] - }, - "contentEn": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "domainNames": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domainNamesCn": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domains": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "editReason": { - "type": "string", - "exampleSetFlag": true - }, - "firstAttachmentVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": false - } - }, - "hasGraph": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isMyFavourite": { - "type": "boolean", - "exampleSetFlag": true - }, - "keyWords": { - "type": "string", - "exampleSetFlag": true - }, - "kmKnowledgeTicketVoList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeTicketAO", - "exampleSetFlag": false - } - }, - "knowledgeNo": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmPrivilegeAO", - "exampleSetFlag": false - } - }, - "problemDes": { - "type": "string", - "exampleSetFlag": true - }, - "relateTicket": { - "type": "string", - "exampleSetFlag": true - }, - "remedialMeasures": { - "type": "string", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "source": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "statusEn": { - "type": "string", - "exampleSetFlag": true - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryEn": { - "type": "string", - "exampleSetFlag": true - }, - "tags": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "titleEn": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updateAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "versionNo": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "KmVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeUpdateReq": { - "title": "KmKnowledgeUpdateReq", - "type": "object", - "properties": { - "approveUsers": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "attachmentIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeCiReq", - "exampleSetFlag": false - } - }, - "content": { - "type": "string", - "exampleSetFlag": true - }, - "contentEditorType": { - "type": "string", - "extensions": { - "$hint$className": "ContentEditorType" - }, - "exampleSetFlag": true, - "enum": [ - "MARKDOWN", - "RICH_TEXT" - ] - }, - "contentEn": { - "type": "string", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "domains": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "editReason": { - "type": "string", - "exampleSetFlag": true - }, - "firstAttachListIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "keyWords": { - "type": "string", - "exampleSetFlag": true - }, - "kmKnowledgeTicketCreateFormList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeTicketCreateReq", - "exampleSetFlag": false - } - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmPrivilegeCreateReq", - "exampleSetFlag": false - } - }, - "problemDes": { - "type": "string", - "exampleSetFlag": true - }, - "relateTicket": { - "type": "string", - "exampleSetFlag": true - }, - "remedialMeasures": { - "type": "string", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "source": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryEn": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "titleEn": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "KmVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "KmKnowledgeVO": { - "title": "KmKnowledgeVO", - "type": "object", - "properties": { - "approveUsers": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": false - } - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "attributeName": { - "type": "string", - "exampleSetFlag": true - }, - "attributeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "catalogDescription": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogName": { - "type": "string", - "exampleSetFlag": true - }, - "ciList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeCiListAO", - "exampleSetFlag": false - } - }, - "content": { - "type": "string", - "exampleSetFlag": true - }, - "contentEditorType": { - "type": "string", - "extensions": { - "$hint$className": "ContentEditorType" - }, - "exampleSetFlag": true, - "enum": [ - "MARKDOWN", - "RICH_TEXT" - ] - }, - "contentEn": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "domainNames": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domainNamesCn": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domains": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "editReason": { - "type": "string", - "exampleSetFlag": true - }, - "firstAttachmentVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": false - } - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isMyFavourite": { - "type": "boolean", - "exampleSetFlag": true - }, - "keyWords": { - "type": "string", - "exampleSetFlag": true - }, - "kmKnowledgeTicketVoList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeTicketAO", - "exampleSetFlag": false - } - }, - "knowledgeNo": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmPrivilegeAO", - "exampleSetFlag": false - } - }, - "problemDes": { - "type": "string", - "exampleSetFlag": true - }, - "relateTicket": { - "type": "string", - "exampleSetFlag": true - }, - "remedialMeasures": { - "type": "string", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "source": { - "type": "string", - "exampleSetFlag": true - }, - "sourceZh": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summaryEn": { - "type": "string", - "exampleSetFlag": true - }, - "tags": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "titleEn": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "typeLabel": { - "type": "string", - "exampleSetFlag": true - }, - "typeLabelZh": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "versionNo": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "KmVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "KmPrivilegeAO": { - "title": "KmPrivilegeAO", - "type": "object", - "properties": { - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmPrivilegeCreateReq": { - "title": "KmPrivilegeCreateReq", - "type": "object", - "properties": { - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmRecommendAO": { - "title": "KmRecommendAO", - "type": "object", - "properties": { - "attributeName": { - "type": "string", - "exampleSetFlag": true - }, - "attributeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "domainNames": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "domainNamesCn": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "hasGraph": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "string", - "exampleSetFlag": true - }, - "isRelate": { - "type": "boolean", - "exampleSetFlag": true - }, - "knowledge_no": { - "type": "string", - "exampleSetFlag": true - }, - "relate": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relate_ticket": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmRecommendTicketSearchReq": { - "title": "KmRecommendTicketSearchReq", - "type": "object", - "properties": { - "groupIdList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "page": { - "type": "string", - "exampleSetFlag": true - }, - "size": { - "type": "string", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmRepeatContentAO": { - "title": "KmRepeatContentAO", - "type": "object", - "properties": { - "kmAttachmentAO": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": true - }, - "kmRepeatDataList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmRepeatData", - "exampleSetFlag": false - } - }, - "repeatRateContent": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmRepeatData": { - "title": "KmRepeatData", - "type": "object", - "properties": { - "destContent": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "destContentForFile": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "sourceContent": { - "type": "string", - "exampleSetFlag": true - }, - "sourceContentForFile": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmSearchConfigAO": { - "title": "KmSearchConfigAO", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "repeatConfig": { - "type": "string", - "exampleSetFlag": true - }, - "searchScope": { - "type": "string", - "exampleSetFlag": true - }, - "searchType": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmSearchConfigUpdateReq": { - "title": "KmSearchConfigUpdateReq", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "repeatConfig": { - "type": "string", - "exampleSetFlag": true - }, - "searchScope": { - "type": "string", - "exampleSetFlag": true - }, - "searchType": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KmUserSortCreateReq": { - "title": "KmUserSortCreateReq", - "type": "object", - "properties": { - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KnowledgeOtherSearchForm": { - "title": "KnowledgeOtherSearchForm", - "type": "object", - "properties": { - "q": { - "type": "string", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KnowledgePortalSearchReq": { - "title": "KnowledgePortalSearchReq", - "type": "object", - "properties": { - "asc": { - "type": "boolean", - "exampleSetFlag": true - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogParentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "content": { - "type": "string", - "exampleSetFlag": true - }, - "domainDict": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "groupIdList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "publishEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "publishStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "searchScope": { - "type": "string", - "exampleSetFlag": true - }, - "searchSort": { - "type": "string", - "extensions": { - "$hint$className": "SearchSort" - }, - "exampleSetFlag": true, - "enum": [ - "LIKE_COUNT", - "RELATE_COUNT", - "SEARCH_COUNT", - "SIMILARITY", - "UPDATE_TIME" - ] - }, - "searchType": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "tags": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KnowledgeTagSearchReq": { - "title": "KnowledgeTagSearchReq", - "type": "object", - "properties": { - "tag": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KnowledgeTicketReq": { - "title": "KnowledgeTicketReq", - "type": "object", - "properties": { - "conditionList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Condition", - "exampleSetFlag": false - } - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeIdList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "relateDirection": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateSys": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateSysTicketNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KnowledgeVersionAO": { - "title": "KnowledgeVersionAO", - "type": "object", - "properties": { - "attachmentVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": false - } - }, - "attribute": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "content": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "display": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "domain": { - "type": "string", - "exampleSetFlag": true - }, - "editReason": { - "type": "string", - "exampleSetFlag": true - }, - "firstAttachmentVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmAttachmentAO", - "exampleSetFlag": false - } - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "keyWords": { - "type": "string", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "knowledgeNo": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "problemDes": { - "type": "string", - "exampleSetFlag": true - }, - "relateTicket": { - "type": "string", - "exampleSetFlag": true - }, - "remedialMeasures": { - "type": "string", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "source": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "KmKnowledgeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "EFFECTIVE", - "NOT_APPROVED", - "OFFLINE", - "PENDING_APPROVAL", - "PENDING_RELEASE" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "versionNo": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "visibility": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KnowledgeVersionSearchReq": { - "title": "KnowledgeVersionSearchReq", - "type": "object", - "properties": { - "display": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isDetail": { - "type": "boolean", - "exampleSetFlag": true - }, - "knowledgeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "KnowledgeVersionUpdateReq": { - "title": "KnowledgeVersionUpdateReq", - "type": "object", - "properties": { - "display": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "MergeCountAO": { - "title": "MergeCountAO", - "type": "object", - "properties": { - "count": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pageQueryType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - "exampleSetFlag": false - }, - "Method": { - "title": "Method", - "type": "object", - "properties": { - "accessible": { - "type": "boolean", - "exampleSetFlag": true - }, - "annotations": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "declaredAnnotations": { - "type": "object", - "additionalProperties": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "exceptionTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "Error-ModelName{namespace='java.lang', name='Class«object»'}", - "exampleSetFlag": false - } - }, - "modifiers": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parameterAnnotations": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "parameterTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "Error-ModelName{namespace='java.lang', name='Class«object»'}", - "exampleSetFlag": false - } - }, - "parameters": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Parameter", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "MethodReq": { - "title": "MethodReq", - "type": "object", - "properties": { - "accessible": { - "type": "boolean", - "exampleSetFlag": true - }, - "annotations": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "declaredAnnotations": { - "type": "object", - "additionalProperties": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "exceptionTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "Error-ModelName{namespace='java.lang', name='Class«object»'}", - "exampleSetFlag": false - } - }, - "modifiers": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parameterAnnotations": { - "type": "string", - "format": "byte", - "exampleSetFlag": true - }, - "parameterTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "Error-ModelName{namespace='java.lang', name='Class«object»'}", - "exampleSetFlag": false - } - }, - "parameters": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ParameterReq", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "MethodRes": { - "title": "MethodRes", - "type": "object", - "properties": { - "accessible": { - "type": "boolean", - "exampleSetFlag": true - }, - "annotatedExceptionTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": false - } - }, - "annotatedParameterTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": false - } - }, - "annotatedReceiverType": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": true - }, - "annotatedReturnType": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": true - }, - "annotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "bridge": { - "type": "boolean", - "exampleSetFlag": true - }, - "declaredAnnotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "default": { - "type": "boolean", - "exampleSetFlag": true - }, - "defaultValue": { - "type": "object", - "exampleSetFlag": true - }, - "exceptionTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "Error-ModelName{namespace='java.lang', name='Class«object»'}", - "exampleSetFlag": false - } - }, - "genericExceptionTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Type", - "exampleSetFlag": false - } - }, - "genericParameterTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Type", - "exampleSetFlag": false - } - }, - "genericReturnType": { - "$ref": "#/components/schemas/Type", - "exampleSetFlag": true - }, - "modifiers": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parameterAnnotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "array", - "exampleSetFlag": false, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - } - }, - "parameterCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parameterTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "Error-ModelName{namespace='java.lang', name='Class«object»'}", - "exampleSetFlag": false - } - }, - "parameters": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ParameterRes", - "exampleSetFlag": false - } - }, - "synthetic": { - "type": "boolean", - "exampleSetFlag": true - }, - "typeParameters": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TypeVariable«Method»", - "exampleSetFlag": false - } - }, - "varArgs": { - "type": "boolean", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "MonthRepeatRuleItem": { - "title": "MonthRepeatRuleItem", - "type": "object", - "properties": { - "dayOfMonth": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "interval": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "weekNum": { - "type": "string", - "extensions": { - "$hint$className": "Week" - }, - "exampleSetFlag": true, - "enum": [ - "FRIDAY", - "MONDAY", - "SATURDAY", - "SUNDAY", - "THURSDAY", - "TUESDAY", - "WEDNESDAY" - ] - }, - "weekNumSeq": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "NodeConfig": { - "title": "NodeConfig", - "type": "object", - "properties": { - "nodeId": { - "type": "string", - "exampleSetFlag": true - }, - "nodeName": { - "type": "string", - "exampleSetFlag": true - }, - "nodeType": { - "type": "string", - "extensions": { - "$hint$className": "NodeType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL", - "FORM" - ] - }, - "properties": { - "type": "object", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "NoticeAO": { - "title": "NoticeAO", - "type": "object", - "properties": { - "attachId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "attachList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AttachmentAO", - "exampleSetFlag": false - } - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imageList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AttachmentAO", - "exampleSetFlag": false - } - }, - "onlineStatus": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "shortDescription": { - "type": "string", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "NoticeCreateReq": { - "title": "NoticeCreateReq", - "type": "object", - "properties": { - "attachId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "shortDescription": { - "type": "string", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OntionConfigRootSearchReq": { - "title": "OntionConfigRootSearchReq", - "type": "object", - "properties": { - "isRoot": { - "type": "boolean", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OptionConfigAO": { - "title": "OptionConfigAO", - "type": "object", - "properties": { - "businessType": { - "type": "string", - "exampleSetFlag": true - }, - "canDelete": { - "type": "boolean", - "exampleSetFlag": true - }, - "children": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OptionConfigAO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isLeaf": { - "type": "boolean", - "exampleSetFlag": true - }, - "key": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "level": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "treeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OptionConfigRootCreateReq": { - "title": "OptionConfigRootCreateReq", - "type": "object", - "properties": { - "businessType": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "level": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OptionConfigRootUpdateReq": { - "title": "OptionConfigRootUpdateReq", - "type": "object", - "properties": { - "businessType": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "level": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameCn": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationAO": { - "title": "OrganizationAO", - "type": "object", - "properties": { - "children": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OrganizationAO", - "exampleSetFlag": false - } - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "disabled": { - "type": "boolean", - "exampleSetFlag": true - }, - "expanded": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isLeaf": { - "type": "boolean", - "exampleSetFlag": true - }, - "level": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationCreateReq": { - "title": "OrganizationCreateReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "OrgType" - }, - "exampleSetFlag": true, - "enum": [ - "REALITY", - "VIRTUAL", - "WORK_DESK" - ] - } - }, - "exampleSetFlag": false - }, - "OrganizationGroupAO": { - "title": "OrganizationGroupAO", - "type": "object", - "properties": { - "allocateRuleCn": { - "type": "string", - "exampleSetFlag": true - }, - "allocateRuleEn": { - "type": "string", - "exampleSetFlag": true - }, - "allocateRules": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "enable": { - "type": "boolean", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "groupNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isDefault": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "keywords": { - "type": "string", - "exampleSetFlag": true - }, - "l1Id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "l1Name": { - "type": "string", - "exampleSetFlag": true - }, - "l2Id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "l2Name": { - "type": "string", - "exampleSetFlag": true - }, - "maxOrderNum": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sdSessionSettingsVO": { - "$ref": "#/components/schemas/SdSessionSettingsAO", - "exampleSetFlag": true - }, - "treeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationGroupCreateReq": { - "title": "OrganizationGroupCreateReq", - "type": "object", - "properties": { - "allocateRules": { - "type": "string", - "exampleSetFlag": true - }, - "avatar": { - "type": "string", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "groupNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "isDefault": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "keyWordsList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "keywords": { - "type": "string", - "exampleSetFlag": true - }, - "maxOrderNum": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "nickName": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sdSessionSettings": { - "$ref": "#/components/schemas/SdSessionSettingsCreateReq", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationGroupMemberAO": { - "title": "OrganizationGroupMemberAO", - "type": "object", - "properties": { - "canAssignee": { - "type": "boolean", - "exampleSetFlag": true - }, - "email": { - "type": "string", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "handledChatCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "handledIncidentCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "maxChatNum": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "maxOrderNum": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "onlineStatus": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationGroupMemberReq": { - "title": "OrganizationGroupMemberReq", - "type": "object", - "properties": { - "email": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationGroupMemberSearchReq": { - "title": "OrganizationGroupMemberSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationGroupSearchReq": { - "title": "OrganizationGroupSearchReq", - "type": "object", - "properties": { - "allocateRules": { - "type": "string", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "enable": { - "type": "boolean", - "exampleSetFlag": true - }, - "existOnlineDutyMember": { - "type": "boolean", - "exampleSetFlag": true - }, - "isDefault": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationGroupUpdateReq": { - "title": "OrganizationGroupUpdateReq", - "type": "object", - "properties": { - "allocateRules": { - "type": "string", - "exampleSetFlag": true - }, - "avatar": { - "type": "string", - "exampleSetFlag": true - }, - "enable": { - "type": "boolean", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "groupNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isDefault": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "keyWordsList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "keywords": { - "type": "string", - "exampleSetFlag": true - }, - "maxOrderNum": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "nickName": { - "type": "string", - "exampleSetFlag": true - }, - "sessionSettingsUpdateForm": { - "$ref": "#/components/schemas/SdSessionSettingsUpdateReq", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationLevelGroupAO": { - "title": "OrganizationLevelGroupAO", - "type": "object", - "properties": { - "disabled": { - "type": "boolean", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isLeaf": { - "type": "boolean", - "exampleSetFlag": true - }, - "key": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "level": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationSearchReq": { - "title": "OrganizationSearchReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "level": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OrganizationUpdateReq": { - "title": "OrganizationUpdateReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "OverallChangeStatusAO": { - "title": "OverallChangeStatusAO", - "type": "object", - "properties": { - "approvalChangeCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "openChangeCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "totalChangeCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "violatedChangeCount": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "Page": { - "title": "Page", - "type": "object", - "properties": { - "number": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "size": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "totalElements": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PageResponse«ProjectSimpleInfoApiVO»": { - "title": "PageResponse«ProjectSimpleInfoApiVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ProjectSimpleInfoApiVO»", - "exampleSetFlag": true - }, - "httpStatus": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PageResult": { - "title": "PageResult", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "object", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«AdTowerAO»": { - "title": "PageResult«AdTowerAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AdTowerAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«AdUserBriefAO»": { - "title": "PageResult«AdUserBriefAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AdUserBriefAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«BizCategoryListAO»": { - "title": "PageResult«BizCategoryListAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryListAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«CabAO»": { - "title": "PageResult«CabAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CabAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«CatalogPrivilegeAO»": { - "title": "PageResult«CatalogPrivilegeAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CatalogPrivilegeAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeAutomationAO»": { - "title": "PageResult«ChangeAutomationAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeAutomationAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeCatalogAO»": { - "title": "PageResult«ChangeCatalogAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCatalogAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeCiAO»": { - "title": "PageResult«ChangeCiAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeCiExecAO»": { - "title": "PageResult«ChangeCiExecAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiExecAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeCiRelationAO»": { - "title": "PageResult«ChangeCiRelationAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiRelationAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeCommentAO»": { - "title": "PageResult«ChangeCommentAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCommentAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeCoordinationUserAO»": { - "title": "PageResult«ChangeCoordinationUserAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCoordinationUserAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeRecordAO»": { - "title": "PageResult«ChangeRecordAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeRecordAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeSceneAO»": { - "title": "PageResult«ChangeSceneAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeSceneAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeTemplateAO»": { - "title": "PageResult«ChangeTemplateAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeTemplateAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeTemplateBasicAO»": { - "title": "PageResult«ChangeTemplateBasicAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeTemplateBasicAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChangeViolationAO»": { - "title": "PageResult«ChangeViolationAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeViolationAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChatConversationAO»": { - "title": "PageResult«ChatConversationAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChatConversationAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChatConversationStatisticAO»": { - "title": "PageResult«ChatConversationStatisticAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChatConversationStatisticAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChatConversationWaitAO»": { - "title": "PageResult«ChatConversationWaitAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChatConversationWaitAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChatMessage»": { - "title": "PageResult«ChatMessage»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChatMessage", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChatServiceUserMonitorAO»": { - "title": "PageResult«ChatServiceUserMonitorAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChatServiceUserMonitorAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChatWaitMonitorAO»": { - "title": "PageResult«ChatWaitMonitorAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChatWaitMonitorAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ChatWaitStatisticAO»": { - "title": "PageResult«ChatWaitStatisticAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChatWaitStatisticAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«CrSubTaskAO»": { - "title": "PageResult«CrSubTaskAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CrSubTaskAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DashBoardAppEntry»": { - "title": "PageResult«DashBoardAppEntry»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DashBoardAppEntry", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«Document»": { - "title": "PageResult«Document»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DutyAO»": { - "title": "PageResult«DutyAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DutyClassAO»": { - "title": "PageResult«DutyClassAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DutyClassChangeAO»": { - "title": "PageResult«DutyClassChangeAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassChangeAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DutyClassLeaveAO»": { - "title": "PageResult«DutyClassLeaveAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassLeaveAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DutyClassLogAO»": { - "title": "PageResult«DutyClassLogAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassLogAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DutyClassLogTicketAO»": { - "title": "PageResult«DutyClassLogTicketAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassLogTicketAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DutyCountAO»": { - "title": "PageResult«DutyCountAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyCountAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DutyFestivalAO»": { - "title": "PageResult«DutyFestivalAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyFestivalAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DutyWorkDateAO»": { - "title": "PageResult«DutyWorkDateAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyWorkDateAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«DutyWorkLocationAO»": { - "title": "PageResult«DutyWorkLocationAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyWorkLocationAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«EmailParseConfigAO»": { - "title": "PageResult«EmailParseConfigAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/EmailParseConfigAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«EmailParseFilterAO»": { - "title": "PageResult«EmailParseFilterAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/EmailParseFilterAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«EmailParseHistoryAO»": { - "title": "PageResult«EmailParseHistoryAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/EmailParseHistoryAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«EmailParseKeywordBizAO»": { - "title": "PageResult«EmailParseKeywordBizAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/EmailParseKeywordBizAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«FormDefinitionAO»": { - "title": "PageResult«FormDefinitionAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/FormDefinitionAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«IncidentAO»": { - "title": "PageResult«IncidentAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«IncidentActivityAO»": { - "title": "PageResult«IncidentActivityAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentActivityAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«IncidentCiAO»": { - "title": "PageResult«IncidentCiAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCiAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«IncidentCiRelationAO»": { - "title": "PageResult«IncidentCiRelationAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCiRelationAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«IncidentEntryAO»": { - "title": "PageResult«IncidentEntryAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentEntryAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«IncidentNoVO»": { - "title": "PageResult«IncidentNoVO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentNoVO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«IncidentRelateTicketAO»": { - "title": "PageResult«IncidentRelateTicketAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentRelateTicketAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«IncidentSlaAO»": { - "title": "PageResult«IncidentSlaAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentSlaAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ItsmConfigAO»": { - "title": "PageResult«ItsmConfigAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ItsmConfigAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ItsmStaticTemplateAO»": { - "title": "PageResult«ItsmStaticTemplateAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ItsmStaticTemplateAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ItsmUserAO»": { - "title": "PageResult«ItsmUserAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ItsmUserAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KmCatalogAO»": { - "title": "PageResult«KmCatalogAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmCatalogAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KmCommentAO»": { - "title": "PageResult«KmCommentAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmCommentAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KmItsmMyApprovedAO»": { - "title": "PageResult«KmItsmMyApprovedAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmItsmMyApprovedAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KmKnowledgeAO»": { - "title": "PageResult«KmKnowledgeAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KmKnowledgeGraphEntityRelateDataVO»": { - "title": "PageResult«KmKnowledgeGraphEntityRelateDataVO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeGraphEntityRelateDataVO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KmKnowledgeGraphEntityRelateVO»": { - "title": "PageResult«KmKnowledgeGraphEntityRelateVO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeGraphEntityRelateVO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KmKnowledgePortalAO»": { - "title": "PageResult«KmKnowledgePortalAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgePortalAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KmKnowledgeTicketAO»": { - "title": "PageResult«KmKnowledgeTicketAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeTicketAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KmKnowledgeTicketPortalAO»": { - "title": "PageResult«KmKnowledgeTicketPortalAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeTicketPortalAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KmRecommendAO»": { - "title": "PageResult«KmRecommendAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmRecommendAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«KnowledgeVersionAO»": { - "title": "PageResult«KnowledgeVersionAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KnowledgeVersionAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«List«string»»": { - "title": "PageResult«List«string»»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "array", - "exampleSetFlag": false, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - } - }, - "exampleSetFlag": false - }, - "PageResult«OptionConfigAO»": { - "title": "PageResult«OptionConfigAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OptionConfigAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«OrganizationGroupAO»": { - "title": "PageResult«OrganizationGroupAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OrganizationGroupAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«OrganizationGroupMemberAO»": { - "title": "PageResult«OrganizationGroupMemberAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OrganizationGroupMemberAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«PbApprovalAO»": { - "title": "PageResult«PbApprovalAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbApprovalAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«PbChangeCiAO»": { - "title": "PageResult«PbChangeCiAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbChangeCiAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«PbChangeCiRelationAO»": { - "title": "PageResult«PbChangeCiRelationAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbChangeCiRelationAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«PbInfoAO»": { - "title": "PageResult«PbInfoAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbInfoAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«PbManagementPbEntry»": { - "title": "PageResult«PbManagementPbEntry»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbManagementPbEntry", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«PbManagementReportEntry»": { - "title": "PageResult«PbManagementReportEntry»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbManagementReportEntry", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«PbRelateTicketAO»": { - "title": "PageResult«PbRelateTicketAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbRelateTicketAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«PbSubTaskAO»": { - "title": "PageResult«PbSubTaskAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbSubTaskAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«PersonTicketsCommonVO»": { - "title": "PageResult«PersonTicketsCommonVO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PersonTicketsCommonVO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«PnInfoWithSlaVO»": { - "title": "PageResult«PnInfoWithSlaVO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PnInfoWithSlaVO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ProjectSimpleInfoApiVO»": { - "title": "PageResult«ProjectSimpleInfoApiVO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ProjectSimpleInfoApiVO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«SearchResultAO»": { - "title": "PageResult«SearchResultAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SearchResultAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ServiceCatalogAO»": { - "title": "PageResult«ServiceCatalogAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ServiceCatalogApprovalAO»": { - "title": "PageResult«ServiceCatalogApprovalAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogApprovalAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ServiceCatalogDetailAO»": { - "title": "PageResult«ServiceCatalogDetailAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogDetailAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ServiceCatalogItsmMyApprovedAO»": { - "title": "PageResult«ServiceCatalogItsmMyApprovedAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogItsmMyApprovedAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ServiceCategoryAO»": { - "title": "PageResult«ServiceCategoryAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCategoryAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ServiceFavouriteAO»": { - "title": "PageResult«ServiceFavouriteAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceFavouriteAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«ServiceTicketAO»": { - "title": "PageResult«ServiceTicketAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceTicketAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«SmSlaConfigAO»": { - "title": "PageResult«SmSlaConfigAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SmSlaConfigAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«SubTaskAO»": { - "title": "PageResult«SubTaskAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SubTaskAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«SubTaskPageAO»": { - "title": "PageResult«SubTaskPageAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SubTaskPageAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«SysConfigAO»": { - "title": "PageResult«SysConfigAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SysConfigAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«SysUserLogAO»": { - "title": "PageResult«SysUserLogAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SysUserLogAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«TemplateAO»": { - "title": "PageResult«TemplateAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TemplateAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«TemplatePageAO»": { - "title": "PageResult«TemplatePageAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TemplatePageAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«TenantDisplayDTO»": { - "title": "PageResult«TenantDisplayDTO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TenantDisplayDTO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«TicketEvaluateAO»": { - "title": "PageResult«TicketEvaluateAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TicketEvaluateAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«TicketVO»": { - "title": "PageResult«TicketVO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TicketVO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«UserApiVO»": { - "title": "PageResult«UserApiVO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/UserApiVO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«UserInfoVO»": { - "title": "PageResult«UserInfoVO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/UserInfoVO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«WindowAO»": { - "title": "PageResult«WindowAO»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/WindowAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PageResult«string»": { - "title": "PageResult«string»", - "type": "object", - "properties": { - "page": { - "$ref": "#/components/schemas/Page", - "exampleSetFlag": true - }, - "rows": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "Parameter": { - "title": "Parameter", - "type": "object", - "properties": { - "declaredAnnotations": { - "type": "object", - "additionalProperties": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "modifiers": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ParameterReq": { - "title": "ParameterReq", - "type": "object", - "properties": { - "declaredAnnotations": { - "type": "object", - "additionalProperties": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "modifiers": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ParameterRes": { - "title": "ParameterRes", - "type": "object", - "properties": { - "annotatedType": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": true - }, - "annotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "declaredAnnotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "declaringExecutable": { - "$ref": "#/components/schemas/Executable", - "exampleSetFlag": true - }, - "implicit": { - "type": "boolean", - "exampleSetFlag": true - }, - "modifiers": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "namePresent": { - "type": "boolean", - "exampleSetFlag": true - }, - "parameterizedType": { - "$ref": "#/components/schemas/Type", - "exampleSetFlag": true - }, - "synthetic": { - "type": "boolean", - "exampleSetFlag": true - }, - "varArgs": { - "type": "boolean", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbActivityCommentAO": { - "title": "PbActivityCommentAO", - "type": "object", - "properties": { - "attachments": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbAttachmentAO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "info": { - "type": "string", - "exampleSetFlag": true - }, - "infoZh": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbActivityCommentCreateReq": { - "title": "PbActivityCommentCreateReq", - "type": "object", - "properties": { - "attachmentIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "attachments": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbAttachmentCreateReq", - "exampleSetFlag": false - } - }, - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "pbid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbApprovalAO": { - "title": "PbApprovalAO", - "type": "object", - "properties": { - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approvalResult": { - "type": "string", - "extensions": { - "$hint$className": "ApproveResult" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVE", - "REFUSE", - "WAITE_APPROVE" - ] - }, - "approvalResultCn": { - "type": "string", - "exampleSetFlag": true - }, - "approvalTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "majorFault": { - "type": "string", - "extensions": { - "$hint$className": "PbMajorFault" - }, - "exampleSetFlag": true, - "enum": [ - "MAJOR_FAULT", - "NOT_MAJOR_FAULT" - ] - }, - "majorFaultCn": { - "type": "string", - "exampleSetFlag": true - }, - "pbCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "pbInfoId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PbPriority" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "priorityCn": { - "type": "string", - "exampleSetFlag": true - }, - "sourceType": { - "type": "string", - "extensions": { - "$hint$className": "PbSourceType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "OPTIMIZE", - "OTHER_MANAGEMENT", - "PROBLEM", - "TASK" - ] - }, - "sourceTypeCn": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "PbStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbApprovalSearchReq": { - "title": "PbApprovalSearchReq", - "type": "object", - "properties": { - "approvalStatus": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "MY_APPROVED", - "MY_SUBMITED", - "PENDING_TO_ME" - ] - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "majorFault": { - "type": "string", - "extensions": { - "$hint$className": "PbMajorFault" - }, - "exampleSetFlag": true, - "enum": [ - "MAJOR_FAULT", - "NOT_MAJOR_FAULT" - ] - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "priorityList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - "sourceTypeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CHANGE", - "INCIDENT", - "OPTIMIZE", - "OTHER_MANAGEMENT", - "PROBLEM", - "TASK" - ] - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbAttachmentAO": { - "title": "PbAttachmentAO", - "type": "object", - "properties": { - "commentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fileType": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "$ref": "#/components/schemas/JSON", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "s3Key": { - "type": "string", - "exampleSetFlag": true - }, - "s3Url": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbAttachmentCreateReq": { - "title": "PbAttachmentCreateReq", - "type": "object", - "properties": { - "commentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fileKey": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "fileType": { - "type": "string", - "exampleSetFlag": true - }, - "fileUrl": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "s3Type": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbChangeCiAO": { - "title": "PbChangeCiAO", - "type": "object", - "properties": { - "ciId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciType": { - "type": "string", - "extensions": { - "$hint$className": "CMDBCiType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION", - "APPLICATION_INSTANCE", - "ASSETS", - "BACKUP_CONTENT", - "BACKUP_DEVICE", - "BMS", - "CIRCUIT", - "CLOUD", - "COMPUTER_ROOM", - "CONTAINER_CLUSTER", - "CONTAINER_PROJECT", - "CONTAINER_SERVICE", - "COST_CENTER", - "DATABASE", - "DATACENTER", - "DEVICE_ONBOARD_APPLICATION", - "DOMAIN_NAME", - "ELASTIC_CACHE_CLUSTER", - "EXTERNAL_SERVER", - "FACILITY_AC", - "FACILITY_GENERATOR", - "FACILITY_RACK", - "FACILITY_UPS", - "FILESYSTEM", - "HA_Cluster", - "INTEGRATION_CI", - "IP_SUBNET", - "LEC_COMPANY", - "LEC_CUSTOMER", - "LEC_SYSTEM", - "MICROSERVICECLUSTER", - "MICROSERVICESERVICE", - "MQ_SERVICE", - "NAS_STORAGE", - "NETWORK_DEVICE", - "NETWORK_DEVICE_PORT", - "NETWORK_SITE", - "NETWORK_ZONE", - "OBJECT_STORAGE", - "OS_STORAGE", - "PDU", - "PUBLIC_CLOUD_ACCOUNT", - "PUBLIC_CLOUD_DATABASE", - "PUBLIC_CLOUD_DISK", - "REMEDY_GROUP", - "ROUTE_DOMAIN", - "SERVER", - "SERVER_LOAD_BALANCER", - "SERVICE", - "SOFTWARE", - "SSL", - "STORAGE_DEVICE", - "STORAGE_LUN", - "STORAGE_POOL", - "SW_LICENSE", - "SW_PR", - "USER_INFO", - "VIRTUAL_IP_ADDRESS" - ] - }, - "ciTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbChangeCiRelationAO": { - "title": "PbChangeCiRelationAO", - "type": "object", - "properties": { - "ciType": { - "type": "string", - "extensions": { - "$hint$className": "CMDBCiType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION", - "APPLICATION_INSTANCE", - "ASSETS", - "BACKUP_CONTENT", - "BACKUP_DEVICE", - "BMS", - "CIRCUIT", - "CLOUD", - "COMPUTER_ROOM", - "CONTAINER_CLUSTER", - "CONTAINER_PROJECT", - "CONTAINER_SERVICE", - "COST_CENTER", - "DATABASE", - "DATACENTER", - "DEVICE_ONBOARD_APPLICATION", - "DOMAIN_NAME", - "ELASTIC_CACHE_CLUSTER", - "EXTERNAL_SERVER", - "FACILITY_AC", - "FACILITY_GENERATOR", - "FACILITY_RACK", - "FACILITY_UPS", - "FILESYSTEM", - "HA_Cluster", - "INTEGRATION_CI", - "IP_SUBNET", - "LEC_COMPANY", - "LEC_CUSTOMER", - "LEC_SYSTEM", - "MICROSERVICECLUSTER", - "MICROSERVICESERVICE", - "MQ_SERVICE", - "NAS_STORAGE", - "NETWORK_DEVICE", - "NETWORK_DEVICE_PORT", - "NETWORK_SITE", - "NETWORK_ZONE", - "OBJECT_STORAGE", - "OS_STORAGE", - "PDU", - "PUBLIC_CLOUD_ACCOUNT", - "PUBLIC_CLOUD_DATABASE", - "PUBLIC_CLOUD_DISK", - "REMEDY_GROUP", - "ROUTE_DOMAIN", - "SERVER", - "SERVER_LOAD_BALANCER", - "SERVICE", - "SOFTWARE", - "SSL", - "STORAGE_DEVICE", - "STORAGE_LUN", - "STORAGE_POOL", - "SW_LICENSE", - "SW_PR", - "USER_INFO", - "VIRTUAL_IP_ADDRESS" - ] - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "dataJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbChangeCiRelationReq": { - "title": "PbChangeCiRelationReq", - "type": "object", - "properties": { - "ciId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "pbId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbChangeCiReplenishAO": { - "title": "PbChangeCiReplenishAO", - "type": "object", - "properties": { - "ciType": { - "type": "string", - "extensions": { - "$hint$className": "CMDBCiType" - }, - "exampleSetFlag": true, - "enum": [ - "APPLICATION", - "APPLICATION_INSTANCE", - "ASSETS", - "BACKUP_CONTENT", - "BACKUP_DEVICE", - "BMS", - "CIRCUIT", - "CLOUD", - "COMPUTER_ROOM", - "CONTAINER_CLUSTER", - "CONTAINER_PROJECT", - "CONTAINER_SERVICE", - "COST_CENTER", - "DATABASE", - "DATACENTER", - "DEVICE_ONBOARD_APPLICATION", - "DOMAIN_NAME", - "ELASTIC_CACHE_CLUSTER", - "EXTERNAL_SERVER", - "FACILITY_AC", - "FACILITY_GENERATOR", - "FACILITY_RACK", - "FACILITY_UPS", - "FILESYSTEM", - "HA_Cluster", - "INTEGRATION_CI", - "IP_SUBNET", - "LEC_COMPANY", - "LEC_CUSTOMER", - "LEC_SYSTEM", - "MICROSERVICECLUSTER", - "MICROSERVICESERVICE", - "MQ_SERVICE", - "NAS_STORAGE", - "NETWORK_DEVICE", - "NETWORK_DEVICE_PORT", - "NETWORK_SITE", - "NETWORK_ZONE", - "OBJECT_STORAGE", - "OS_STORAGE", - "PDU", - "PUBLIC_CLOUD_ACCOUNT", - "PUBLIC_CLOUD_DATABASE", - "PUBLIC_CLOUD_DISK", - "REMEDY_GROUP", - "ROUTE_DOMAIN", - "SERVER", - "SERVER_LOAD_BALANCER", - "SERVICE", - "SOFTWARE", - "SSL", - "STORAGE_DEVICE", - "STORAGE_LUN", - "STORAGE_POOL", - "SW_LICENSE", - "SW_PR", - "USER_INFO", - "VIRTUAL_IP_ADDRESS" - ] - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbChangeCiReplenishReq": { - "title": "PbChangeCiReplenishReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "pbId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbChangeCiReplenishSearchReq": { - "title": "PbChangeCiReplenishSearchReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbChangeCiReq": { - "title": "PbChangeCiReq", - "type": "object", - "properties": { - "ciId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "cmdbCiId": { - "type": "string", - "exampleSetFlag": true - }, - "cmdbCiType": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "dataJson": { - "type": "object", - "exampleSetFlag": true - }, - "pbId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbCiSortReq": { - "title": "PbCiSortReq", - "type": "object", - "properties": { - "ciTypeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ciTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "ciTypeNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "exampleSetFlag": true - }, - "sort": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbCommentAO": { - "title": "PbCommentAO", - "type": "object", - "properties": { - "attachment": { - "type": "string", - "exampleSetFlag": true - }, - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbFileInfoAO": { - "title": "PbFileInfoAO", - "type": "object", - "properties": { - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileUrl": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "string", - "exampleSetFlag": true - }, - "s3Url": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbFullTextSearch": { - "title": "PbFullTextSearch", - "type": "object", - "properties": { - "text": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbIncRsAO": { - "title": "PbIncRsAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incidentId": { - "type": "string", - "exampleSetFlag": true - }, - "isDelete": { - "type": "boolean", - "exampleSetFlag": true - }, - "pbId": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbIncidentAO": { - "title": "PbIncidentAO", - "type": "object", - "properties": { - "assignedGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "incidentNo": { - "type": "string", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "resolveBy": { - "type": "string", - "exampleSetFlag": true - }, - "resource": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sourceType": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbInfoAO": { - "title": "PbInfoAO", - "type": "object", - "properties": { - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeGroup": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "businessImpact": { - "type": "string", - "exampleSetFlag": true - }, - "compareResultDesc": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "esId": { - "type": "string", - "exampleSetFlag": true - }, - "esIndex": { - "type": "string", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "highlight": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "issueDesc": { - "type": "string", - "exampleSetFlag": true - }, - "majorFault": { - "type": "string", - "extensions": { - "$hint$className": "PbMajorFault" - }, - "exampleSetFlag": true, - "enum": [ - "MAJOR_FAULT", - "NOT_MAJOR_FAULT" - ] - }, - "majorFaultCn": { - "type": "string", - "exampleSetFlag": true - }, - "majorFaultEn": { - "type": "string", - "exampleSetFlag": true - }, - "methodology": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "preOnholdStatus": { - "type": "string", - "extensions": { - "$hint$className": "PbStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PbPriority" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "priorityCn": { - "type": "string", - "exampleSetFlag": true - }, - "repairValueType": { - "type": "string", - "exampleSetFlag": true - }, - "resolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "slaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "slaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "sourceType": { - "type": "string", - "extensions": { - "$hint$className": "PbSourceType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "OPTIMIZE", - "OTHER_MANAGEMENT", - "PROBLEM", - "TASK" - ] - }, - "sourceTypeCn": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "PbStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "submitterCompany": { - "type": "string", - "exampleSetFlag": true - }, - "submitterCompanyCn": { - "type": "string", - "exampleSetFlag": true - }, - "submitterGroup": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "vip": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoV2Type" - }, - "exampleSetFlag": true, - "enum": [ - "NO", - "YES" - ] - }, - "workaround": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbInfoCreateReq": { - "title": "PbInfoCreateReq", - "type": "object", - "properties": { - "action": { - "type": "string", - "extensions": { - "$hint$className": "PbAction" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL", - "CANCEL", - "CLOSE", - "CREATE", - "DEAL", - "ON_HOLD", - "REANALYSIS", - "RESOLVE", - "ROOT_CAUSE_ANALYSIS", - "SAVE", - "START_REPAIR", - "TEMPORARY", - "TRANSFER" - ] - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbAttachmentCreateReq", - "exampleSetFlag": false - } - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "businessImpact": { - "type": "string", - "exampleSetFlag": true - }, - "compareResultDesc": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "issueDesc": { - "type": "string", - "exampleSetFlag": true - }, - "majorFault": { - "type": "string", - "extensions": { - "$hint$className": "PbMajorFault" - }, - "exampleSetFlag": true, - "enum": [ - "MAJOR_FAULT", - "NOT_MAJOR_FAULT" - ] - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "pbRelateTickets": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PbPriority" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "repairValueType": { - "type": "string", - "exampleSetFlag": true - }, - "sourceType": { - "type": "string", - "extensions": { - "$hint$className": "PbSourceType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "OPTIMIZE", - "OTHER_MANAGEMENT", - "PROBLEM", - "TASK" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbInfoDetailAO": { - "title": "PbInfoDetailAO", - "type": "object", - "properties": { - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "approvers": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeAttachment": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbFileInfoAO", - "exampleSetFlag": false - } - }, - "assigneeGroup": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "businessImpact": { - "type": "string", - "exampleSetFlag": true - }, - "compareResultDesc": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "customerEmail": { - "type": "string", - "exampleSetFlag": true - }, - "esId": { - "type": "string", - "exampleSetFlag": true - }, - "esIndex": { - "type": "string", - "exampleSetFlag": true - }, - "eventTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "impactedUser": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "incidents": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbIncidentAO", - "exampleSetFlag": false - } - }, - "involve": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "issueDesc": { - "type": "string", - "exampleSetFlag": true - }, - "majorFault": { - "type": "string", - "extensions": { - "$hint$className": "PbMajorFault" - }, - "exampleSetFlag": true, - "enum": [ - "MAJOR_FAULT", - "NOT_MAJOR_FAULT" - ] - }, - "manager": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "methodology": { - "type": "string", - "exampleSetFlag": true - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "pbAttachmentVos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbAttachmentAO", - "exampleSetFlag": false - } - }, - "pbIncRsList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbIncRsAO", - "exampleSetFlag": false - } - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "pbResolutionVO": { - "$ref": "#/components/schemas/IncidentResolutionAO", - "exampleSetFlag": true - }, - "plan": { - "type": "string", - "exampleSetFlag": true - }, - "preOnholdStatus": { - "type": "string", - "extensions": { - "$hint$className": "PbStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PbPriority" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "problemSolver": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "repairValueType": { - "type": "string", - "exampleSetFlag": true - }, - "resolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "sourceType": { - "type": "string", - "extensions": { - "$hint$className": "PbSourceType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "OPTIMIZE", - "OTHER_MANAGEMENT", - "PROBLEM", - "TASK" - ] - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "PbStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "submitterAttachment": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbFileInfoAO", - "exampleSetFlag": false - } - }, - "submitterCompany": { - "type": "string", - "exampleSetFlag": true - }, - "submitterCompanyCn": { - "type": "string", - "exampleSetFlag": true - }, - "submitterGroup": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "topic": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "vip": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "workaround": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbInfoUpdateReq": { - "title": "PbInfoUpdateReq", - "type": "object", - "properties": { - "action": { - "type": "string", - "extensions": { - "$hint$className": "PbAction" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL", - "CANCEL", - "CLOSE", - "CREATE", - "DEAL", - "ON_HOLD", - "REANALYSIS", - "RESOLVE", - "ROOT_CAUSE_ANALYSIS", - "SAVE", - "START_REPAIR", - "TEMPORARY", - "TRANSFER" - ] - }, - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approvalResult": { - "type": "string", - "extensions": { - "$hint$className": "ApproveResult" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVE", - "REFUSE", - "WAITE_APPROVE" - ] - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbAttachmentCreateReq", - "exampleSetFlag": false - } - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "businessImpact": { - "type": "string", - "exampleSetFlag": true - }, - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "compareResultDesc": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "issueDesc": { - "type": "string", - "exampleSetFlag": true - }, - "majorFault": { - "type": "string", - "extensions": { - "$hint$className": "PbMajorFault" - }, - "exampleSetFlag": true, - "enum": [ - "MAJOR_FAULT", - "NOT_MAJOR_FAULT" - ] - }, - "methodology": { - "type": "string", - "exampleSetFlag": true - }, - "otherReasonOnhold": { - "type": "string", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "pbResolutionSaveForm": { - "$ref": "#/components/schemas/PbResolutionSaveReq", - "exampleSetFlag": true - }, - "pbStatus": { - "type": "string", - "extensions": { - "$hint$className": "PbStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PbPriority" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "reasonOfOnhold": { - "type": "string", - "extensions": { - "$hint$className": "HoldReasonType" - }, - "exampleSetFlag": true, - "enum": [ - "AWAITING_CALLER", - "AWAITING_CHANGE", - "AWAITING_PROBLEM", - "AWAITING_VENDOR", - "OTHERS" - ] - }, - "repairValueType": { - "type": "string", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "sourceType": { - "type": "string", - "extensions": { - "$hint$className": "PbSourceType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "OPTIMIZE", - "OTHER_MANAGEMENT", - "PROBLEM", - "TASK" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "workaround": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbItpbTicketAO": { - "title": "PbItpbTicketAO", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateSys": { - "type": "string", - "extensions": { - "$hint$className": "PbRelateTicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "ITPB", - "KNOWLEDGE", - "TASK", - "UNKNOWN" - ] - }, - "relateSysTicketNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbManagementEntry": { - "title": "PbManagementEntry", - "type": "object", - "properties": { - "ciTypeName": { - "type": "string", - "exampleSetFlag": true - }, - "sum": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "typeName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbManagementPbEntry": { - "title": "PbManagementPbEntry", - "type": "object", - "properties": { - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbManagementReportEntry": { - "title": "PbManagementReportEntry", - "type": "object", - "properties": { - "closeRatio": { - "type": "number", - "format": "bigdecimal", - "exampleSetFlag": true - }, - "greaterThan1": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "greaterThan2": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "greaterThan3": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "group": { - "type": "string", - "exampleSetFlag": true - }, - "lessThanOrEquals": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "total": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "totalClosed": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "totalInProgress": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbRelateTicketAO": { - "title": "PbRelateTicketAO", - "type": "object", - "properties": { - "hasGraph": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "priority": { - "type": "object", - "exampleSetFlag": true - }, - "relateSys": { - "type": "string", - "extensions": { - "$hint$className": "PbRelateTicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "ITPB", - "KNOWLEDGE", - "TASK", - "UNKNOWN" - ] - }, - "relateSysTicketNo": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "object", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "ticketId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbReportSearchReq": { - "title": "PbReportSearchReq", - "type": "object", - "properties": { - "groupNames": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PbResolutionSaveReq": { - "title": "PbResolutionSaveReq", - "type": "object", - "properties": { - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "optionConfigId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "resolveBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbSubTaskAO": { - "title": "PbSubTaskAO", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "attachment": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbFileInfoAO", - "exampleSetFlag": false - } - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rejectReason": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "remarksAttachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbFileInfoAO", - "exampleSetFlag": false - } - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "statusEn": { - "type": "string", - "exampleSetFlag": true - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "taskNo": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbSubTaskSearchReq": { - "title": "PbSubTaskSearchReq", - "type": "object", - "properties": { - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "endCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "number": { - "type": "string", - "exampleSetFlag": true - }, - "pageNum": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pageQueryType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "pageSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "planEndTimeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planEndTimeStart": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "startCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "taskNo": { - "type": "string", - "exampleSetFlag": true - }, - "types": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbSubtaskCreateReq": { - "title": "PbSubtaskCreateReq", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "attachment": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbFileInfoAO", - "exampleSetFlag": false - } - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rejectReason": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbSubtaskUpdateReq": { - "title": "PbSubtaskUpdateReq", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "attachment": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbFileInfoAO", - "exampleSetFlag": false - } - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rejectReason": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "remarksAttachment": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbFileInfoAO", - "exampleSetFlag": false - } - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbTicketCreateReq": { - "title": "PbTicketCreateReq", - "type": "object", - "properties": { - "pbid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateSys": { - "type": "string", - "extensions": { - "$hint$className": "PbRelateTicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "ITPB", - "KNOWLEDGE", - "TASK", - "UNKNOWN" - ] - }, - "relateSysTicketNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbTicketDeleteReq": { - "title": "PbTicketDeleteReq", - "type": "object", - "properties": { - "ticketIdList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PbTicketRelateUpdateReq": { - "title": "PbTicketRelateUpdateReq", - "type": "object", - "properties": { - "pbId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ticketNos": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "PbRelateTicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "ITPB", - "KNOWLEDGE", - "TASK", - "UNKNOWN" - ] - } - }, - "exampleSetFlag": false - }, - "PbTicketsSearchReq": { - "title": "PbTicketsSearchReq", - "type": "object", - "properties": { - "createAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "pbId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "relateSys": { - "type": "string", - "extensions": { - "$hint$className": "PbRelateTicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "ITPB", - "KNOWLEDGE", - "TASK", - "UNKNOWN" - ] - }, - "relateSysTicketNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PbinfoSearchReq": { - "title": "PbinfoSearchReq", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignGroups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeUserList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdAtEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdAtStart": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "endCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endResolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "exportAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "majorFault": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "MAJOR_FAULT", - "NOT_MAJOR_FAULT" - ] - } - }, - "nos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "orgId": { - "type": "string", - "exampleSetFlag": true - }, - "ownerTower": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "pageQueryType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "pbNums": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "pbPriorityList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "MEDIUM" - ] - } - }, - "pbSourceTypeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CHANGE", - "INCIDENT", - "OPTIMIZE", - "OTHER_MANAGEMENT", - "PROBLEM", - "TASK" - ] - } - }, - "pbStatuseList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - } - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PbPriority" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "query": { - "type": "string", - "exampleSetFlag": true - }, - "relateCiId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "resolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "slaStatusList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - } - }, - "sourceType": { - "type": "string", - "extensions": { - "$hint$className": "PbSourceType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "OPTIMIZE", - "OTHER_MANAGEMENT", - "PROBLEM", - "TASK" - ] - }, - "startCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startResolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "PbStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "types": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "vip": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PersonTicketsCommonVO": { - "title": "PersonTicketsCommonVO", - "type": "object", - "properties": { - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "exampleSetFlag": true - }, - "priorityCn": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "ticketTypeCN": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PersonTicketsForm": { - "title": "PersonTicketsForm", - "type": "object", - "properties": { - "assignUsers": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - }, - "exampleSetFlag": false - }, - "PnInfoWithSlaVO": { - "title": "PnInfoWithSlaVO", - "type": "object", - "properties": { - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeGroup": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCategoryName": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "businessImpact": { - "type": "string", - "exampleSetFlag": true - }, - "compareResultDesc": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "esId": { - "type": "string", - "exampleSetFlag": true - }, - "esIndex": { - "type": "string", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "highlight": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "issueDesc": { - "type": "string", - "exampleSetFlag": true - }, - "majorFault": { - "type": "string", - "extensions": { - "$hint$className": "PbMajorFault" - }, - "exampleSetFlag": true, - "enum": [ - "MAJOR_FAULT", - "NOT_MAJOR_FAULT" - ] - }, - "majorFaultCn": { - "type": "string", - "exampleSetFlag": true - }, - "majorFaultEn": { - "type": "string", - "exampleSetFlag": true - }, - "methodology": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "preOnholdStatus": { - "type": "string", - "extensions": { - "$hint$className": "PbStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "PbPriority" - }, - "exampleSetFlag": true, - "enum": [ - "CRITICAL", - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "priorityCn": { - "type": "string", - "exampleSetFlag": true - }, - "repairValueType": { - "type": "string", - "exampleSetFlag": true - }, - "resolveSlaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "resolveSlaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "resolveSlaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "resolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "responseSlaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "responseSlaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "responseSlaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "rootCause": { - "type": "string", - "exampleSetFlag": true - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "slaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "slaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "sourceType": { - "type": "string", - "extensions": { - "$hint$className": "PbSourceType" - }, - "exampleSetFlag": true, - "enum": [ - "CHANGE", - "INCIDENT", - "OPTIMIZE", - "OTHER_MANAGEMENT", - "PROBLEM", - "TASK" - ] - }, - "sourceTypeCn": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "PbStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "INVESTIGATING", - "ON_HOLD", - "REPAIRING", - "RESOLVED", - "ROOT_CAUSE_ANALYSIS", - "UNKNOWN", - "WAITING_APPROVAL" - ] - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "submitterCompany": { - "type": "string", - "exampleSetFlag": true - }, - "submitterCompanyCn": { - "type": "string", - "exampleSetFlag": true - }, - "submitterGroup": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "vip": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoV2Type" - }, - "exampleSetFlag": true, - "enum": [ - "NO", - "YES" - ] - }, - "workaround": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "PortalAO": { - "title": "PortalAO", - "type": "object", - "properties": { - "bottomLinkVos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ConfigAO", - "exampleSetFlag": false - } - }, - "bottomLogoVo": { - "$ref": "#/components/schemas/ConfigAO", - "exampleSetFlag": true - }, - "commonLinkVoS": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CommonLinkAO", - "exampleSetFlag": false - } - }, - "companyVos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ConfigAO", - "exampleSetFlag": false - } - }, - "noticeVos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/NoticeAO", - "exampleSetFlag": false - } - }, - "popularServiceVos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceAO", - "exampleSetFlag": false - } - }, - "specialServiceVos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PortalConfigCreateForm": { - "title": "PortalConfigCreateForm", - "type": "object", - "properties": { - "bottomConfigForms": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ConfigCreateReq", - "exampleSetFlag": false - } - }, - "bottomLogoForms": { - "$ref": "#/components/schemas/ConfigCreateReq", - "exampleSetFlag": true - }, - "commonCreateForms": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CommonCreateReq", - "exampleSetFlag": false - } - }, - "companyConfigForms": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ConfigCreateReq", - "exampleSetFlag": false - } - }, - "popCreateForms": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCreateReq", - "exampleSetFlag": false - } - }, - "specialCreateForms": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCreateReq", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PortalConfigVO": { - "title": "PortalConfigVO", - "type": "object", - "properties": { - "bottomConfigAo": { - "$ref": "#/components/schemas/ConfigAO", - "exampleSetFlag": true - }, - "bottomLogoAo": { - "$ref": "#/components/schemas/ConfigAO", - "exampleSetFlag": true - }, - "commonLinkAos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CommonLinkAO", - "exampleSetFlag": false - } - }, - "companyConfigAo": { - "$ref": "#/components/schemas/ConfigAO", - "exampleSetFlag": true - }, - "popServiceAos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceAO", - "exampleSetFlag": false - } - }, - "specialServiceAos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "PrivilegeReq": { - "title": "PrivilegeReq", - "type": "object", - "properties": { - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "itsmOrgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgName": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ProcessCancelReq": { - "title": "ProcessCancelReq", - "type": "object", - "properties": { - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - }, - "variables": { - "type": "object", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ProcessContinueReq": { - "title": "ProcessContinueReq", - "type": "object", - "properties": { - "messageName": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "variables": { - "type": "object", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ProcessDefinitionResourceVO": { - "title": "ProcessDefinitionResourceVO", - "type": "object", - "properties": { - "content": { - "type": "string", - "exampleSetFlag": true - }, - "editSource": { - "type": "string", - "extensions": { - "$hint$className": "EditSourceType" - }, - "exampleSetFlag": true, - "enum": [ - "ORIGIN", - "SIMPLIFY" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ProcessTask": { - "title": "ProcessTask", - "type": "object", - "properties": { - "approveVariable": { - "type": "string", - "exampleSetFlag": true - }, - "assignee": { - "type": "string", - "exampleSetFlag": true - }, - "businessKey": { - "type": "string", - "exampleSetFlag": true - }, - "candidates": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "id": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "requester": { - "type": "string", - "exampleSetFlag": true - }, - "taskDefKey": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ProductVO": { - "title": "ProductVO", - "type": "object", - "properties": { - "chargeItcode": { - "type": "string", - "exampleSetFlag": true - }, - "code": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "key": { - "type": "string", - "exampleSetFlag": true - }, - "lenovoPrivate": { - "type": "boolean", - "exampleSetFlag": true - }, - "lifeCycle": { - "type": "string", - "extensions": { - "$hint$className": "ProductLifeCycle" - }, - "exampleSetFlag": true, - "enum": [ - "DEVELOPING", - "INTERNAL_TESTING", - "OFFLINE", - "PUBLIC_TESTING", - "PUBLISHED" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameZh": { - "type": "string", - "exampleSetFlag": true - }, - "rank": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "remarkEn": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ProductStatus" - }, - "exampleSetFlag": true, - "enum": [ - "INIT", - "NORMAL" - ] - }, - "thirdParty": { - "type": "boolean", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "uri": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ProjectSimpleInfoApiVO": { - "title": "ProjectSimpleInfoApiVO", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "image": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "QueryShow": { - "title": "QueryShow", - "type": "object", - "properties": { - "column": { - "type": "string", - "exampleSetFlag": true - }, - "label": { - "type": "string", - "exampleSetFlag": true - }, - "labelCn": { - "type": "string", - "exampleSetFlag": true - }, - "orderNo": { - "type": "number", - "format": "double", - "exampleSetFlag": true - }, - "show": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "QuerySort": { - "title": "QuerySort", - "type": "object", - "properties": { - "column": { - "type": "string", - "exampleSetFlag": true - }, - "option": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "RepeatRule": { - "title": "RepeatRule", - "type": "object", - "properties": { - "dayRepeatRuleItem": { - "$ref": "#/components/schemas/DayRepeatRuleItem", - "exampleSetFlag": true - }, - "monthRepeatRuleItem": { - "$ref": "#/components/schemas/MonthRepeatRuleItem", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "RepeatRuleType" - }, - "exampleSetFlag": true, - "enum": [ - "DAY", - "MONTH", - "WEEK" - ] - }, - "weekRepeatRuleItem": { - "$ref": "#/components/schemas/WeekRepeatRuleItem", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "RequestForm": { - "title": "RequestForm", - "required": [ - "methodType" - ], - "type": "object", - "properties": { - "body": { - "type": "object", - "exampleSetFlag": true - }, - "headers": { - "type": "object", - "additionalProperties": { - "type": "string", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "methodType": { - "type": "string", - "extensions": { - "$hint$className": "HttpMethod" - }, - "exampleSetFlag": true, - "enum": [ - "DELETE", - "GET", - "HEAD", - "OPTIONS", - "PATCH", - "POST", - "PUT", - "TRACE" - ] - }, - "url": { - "type": "string", - "exampleSetFlag": true - }, - "urlParams": { - "type": "object", - "additionalProperties": { - "type": "string", - "exampleSetFlag": false - }, - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResponseEntity": { - "title": "ResponseEntity", - "type": "object", - "properties": { - "body": { - "type": "object", - "exampleSetFlag": true - }, - "statusCode": { - "type": "string", - "extensions": { - "$hint$className": "HttpStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ACCEPTED", - "ALREADY_REPORTED", - "BAD_GATEWAY", - "BAD_REQUEST", - "BANDWIDTH_LIMIT_EXCEEDED", - "CHECKPOINT", - "CONFLICT", - "CONTINUE", - "CREATED", - "DESTINATION_LOCKED", - "EXPECTATION_FAILED", - "FAILED_DEPENDENCY", - "FORBIDDEN", - "FOUND", - "GATEWAY_TIMEOUT", - "GONE", - "HTTP_VERSION_NOT_SUPPORTED", - "IM_USED", - "INSUFFICIENT_SPACE_ON_RESOURCE", - "INSUFFICIENT_STORAGE", - "INTERNAL_SERVER_ERROR", - "I_AM_A_TEAPOT", - "LENGTH_REQUIRED", - "LOCKED", - "LOOP_DETECTED", - "METHOD_FAILURE", - "METHOD_NOT_ALLOWED", - "MOVED_PERMANENTLY", - "MOVED_TEMPORARILY", - "MULTIPLE_CHOICES", - "MULTI_STATUS", - "NETWORK_AUTHENTICATION_REQUIRED", - "NON_AUTHORITATIVE_INFORMATION", - "NOT_ACCEPTABLE", - "NOT_EXTENDED", - "NOT_FOUND", - "NOT_IMPLEMENTED", - "NOT_MODIFIED", - "NO_CONTENT", - "OK", - "PARTIAL_CONTENT", - "PAYLOAD_TOO_LARGE", - "PAYMENT_REQUIRED", - "PERMANENT_REDIRECT", - "PRECONDITION_FAILED", - "PRECONDITION_REQUIRED", - "PROCESSING", - "PROXY_AUTHENTICATION_REQUIRED", - "REQUESTED_RANGE_NOT_SATISFIABLE", - "REQUEST_ENTITY_TOO_LARGE", - "REQUEST_HEADER_FIELDS_TOO_LARGE", - "REQUEST_TIMEOUT", - "REQUEST_URI_TOO_LONG", - "RESET_CONTENT", - "SEE_OTHER", - "SERVICE_UNAVAILABLE", - "SWITCHING_PROTOCOLS", - "TEMPORARY_REDIRECT", - "TOO_EARLY", - "TOO_MANY_REQUESTS", - "UNAUTHORIZED", - "UNAVAILABLE_FOR_LEGAL_REASONS", - "UNPROCESSABLE_ENTITY", - "UNSUPPORTED_MEDIA_TYPE", - "UPGRADE_REQUIRED", - "URI_TOO_LONG", - "USE_PROXY", - "VARIANT_ALSO_NEGOTIATES" - ] - }, - "statusCodeValue": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "Response«PageResult«KmKnowledgeTicketAO»»": { - "title": "Response«PageResult«KmKnowledgeTicketAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmKnowledgeTicketAO»", - "exampleSetFlag": true - }, - "httpStatus": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "Response«int»": { - "title": "Response«int»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "httpStatus": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody": { - "title": "ResultBody", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«AdTowerAO»": { - "title": "ResultBody«AdTowerAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/AdTowerAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«AdUserBriefAO»": { - "title": "ResultBody«AdUserBriefAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/AdUserBriefAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Array«string»»": { - "title": "ResultBody«Array«string»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«AuthenticationAO»": { - "title": "ResultBody«AuthenticationAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/AuthenticationAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«BizCategoryAO»": { - "title": "ResultBody«BizCategoryAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/BizCategoryAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«BottomStatisticsAO»": { - "title": "ResultBody«BottomStatisticsAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/BottomStatisticsAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«CabAO»": { - "title": "ResultBody«CabAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/CabAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeAO»": { - "title": "ResultBody«ChangeAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeAreaAO»": { - "title": "ResultBody«ChangeAreaAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeAreaAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeAutomationAO»": { - "title": "ResultBody«ChangeAutomationAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeAutomationAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeCatalogAO»": { - "title": "ResultBody«ChangeCatalogAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeCatalogAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeCiAO»": { - "title": "ResultBody«ChangeCiAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeCiAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeCiReplenishAO»": { - "title": "ResultBody«ChangeCiReplenishAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeCiReplenishAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeCommentAO»": { - "title": "ResultBody«ChangeCommentAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeCommentAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeCoordinationFeedbackReportAO»": { - "title": "ResultBody«ChangeCoordinationFeedbackReportAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeCoordinationFeedbackReportAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeCoordinationUserAO»": { - "title": "ResultBody«ChangeCoordinationUserAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeCoordinationUserAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeCreateReq»": { - "title": "ResultBody«ChangeCreateReq»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeCreateReqRes", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeFileAO»": { - "title": "ResultBody«ChangeFileAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeFileAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangePlanAO»": { - "title": "ResultBody«ChangePlanAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangePlanAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeSceneAO»": { - "title": "ResultBody«ChangeSceneAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeSceneAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeStatusReportAO»": { - "title": "ResultBody«ChangeStatusReportAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeStatusReportAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChangeTemplateAO»": { - "title": "ResultBody«ChangeTemplateAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChangeTemplateAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChatExitResultAO»": { - "title": "ResultBody«ChatExitResultAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChatExitResultAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChatIncidentAO»": { - "title": "ResultBody«ChatIncidentAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChatIncidentAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ChatPickResultAO»": { - "title": "ResultBody«ChatPickResultAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ChatPickResultAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«CiRelationVO»": { - "title": "ResultBody«CiRelationVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/CiRelationVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«CiTypeAO»": { - "title": "ResultBody«CiTypeAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/CiTypeAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ConfigAO»": { - "title": "ResultBody«ConfigAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ConfigAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ConversationCountAO»": { - "title": "ResultBody«ConversationCountAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ConversationCountAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«CrSubTaskAO»": { - "title": "ResultBody«CrSubTaskAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/CrSubTaskAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Document»": { - "title": "ResultBody«Document»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«DutyAO»": { - "title": "ResultBody«DutyAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/DutyAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«DutyClassAO»": { - "title": "ResultBody«DutyClassAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/DutyClassAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«DutyClassChangeAO»": { - "title": "ResultBody«DutyClassChangeAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/DutyClassChangeAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«DutyClassLeaveAO»": { - "title": "ResultBody«DutyClassLeaveAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/DutyClassLeaveAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«DutyClassLogAO»": { - "title": "ResultBody«DutyClassLogAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/DutyClassLogAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«DutyClassScheduleAO»": { - "title": "ResultBody«DutyClassScheduleAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/DutyClassScheduleAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«DutyFestivalAO»": { - "title": "ResultBody«DutyFestivalAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/DutyFestivalAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«DutyWorkDateAO»": { - "title": "ResultBody«DutyWorkDateAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/DutyWorkDateAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«DutyWorkLocationAO»": { - "title": "ResultBody«DutyWorkLocationAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/DutyWorkLocationAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«EmailParseKeywordAO»": { - "title": "ResultBody«EmailParseKeywordAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/EmailParseKeywordAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«FormDefinitionAO»": { - "title": "ResultBody«FormDefinitionAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/FormDefinitionAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«GovernanceUserAO»": { - "title": "ResultBody«GovernanceUserAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/GovernanceUserAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«HashMap«string,List«HashMap«string,List«KmKnowledgePortalAO»»»»»": { - "title": "ResultBody«HashMap«string,List«HashMap«string,List«KmKnowledgePortalAO»»»»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "additionalProperties": { - "type": "array", - "exampleSetFlag": false, - "items": { - "type": "object", - "additionalProperties": { - "type": "array", - "exampleSetFlag": false, - "items": { - "$ref": "#/components/schemas/KmKnowledgePortalAO", - "exampleSetFlag": false - } - }, - "exampleSetFlag": false - } - }, - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«IncidentAO»": { - "title": "ResultBody«IncidentAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/IncidentAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«IncidentAttachmentAO»": { - "title": "ResultBody«IncidentAttachmentAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/IncidentAttachmentAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«IncidentCommentAO»": { - "title": "ResultBody«IncidentCommentAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/IncidentCommentAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«IncidentFavouriteAO»": { - "title": "ResultBody«IncidentFavouriteAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/IncidentFavouriteAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«IncidentReportAO»": { - "title": "ResultBody«IncidentReportAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/IncidentReportAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«InterfaceCallLogAO»": { - "title": "ResultBody«InterfaceCallLogAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/InterfaceCallLogAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ItsmConfigAO»": { - "title": "ResultBody«ItsmConfigAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ItsmConfigAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ItsmFileAO»": { - "title": "ResultBody«ItsmFileAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ItsmFileAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ItsmStaticTemplateAO»": { - "title": "ResultBody«ItsmStaticTemplateAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ItsmStaticTemplateAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«KmCatalogAO»": { - "title": "ResultBody«KmCatalogAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/KmCatalogAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«KmKnowledgeAO»": { - "title": "ResultBody«KmKnowledgeAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/KmKnowledgeAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«KmKnowledgeTagAO»": { - "title": "ResultBody«KmKnowledgeTagAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/KmKnowledgeTagAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«KmKnowledgeTicketAO»": { - "title": "ResultBody«KmKnowledgeTicketAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/KmKnowledgeTicketAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«KmKnowledgeVO»": { - "title": "ResultBody«KmKnowledgeVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/KmKnowledgeVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«KmRepeatContentAO»": { - "title": "ResultBody«KmRepeatContentAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/KmRepeatContentAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«KmSearchConfigAO»": { - "title": "ResultBody«KmSearchConfigAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/KmSearchConfigAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«AdUserBriefAO»»": { - "title": "ResultBody«List«AdUserBriefAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AdUserBriefAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ApprovalWorkflowAO»»": { - "title": "ResultBody«List«ApprovalWorkflowAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ApprovalWorkflowAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«BizCategoryAO»»": { - "title": "ResultBody«List«BizCategoryAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«BizCategoryGroupAO»»": { - "title": "ResultBody«List«BizCategoryGroupAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BizCategoryGroupAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«BpmNodeAO»»": { - "title": "ResultBody«List«BpmNodeAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/BpmNodeAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«CatalogDeleteAO»»": { - "title": "ResultBody«List«CatalogDeleteAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CatalogDeleteAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeApplicationAO»»": { - "title": "ResultBody«List«ChangeApplicationAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeApplicationAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeBasicItemAO»»": { - "title": "ResultBody«List«ChangeBasicItemAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeBasicItemAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeCiAO»»": { - "title": "ResultBody«List«ChangeCiAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeCiColumn»»": { - "title": "ResultBody«List«ChangeCiColumn»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiColumn", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeCiExecHisAO»»": { - "title": "ResultBody«List«ChangeCiExecHisAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiExecHisAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeCiReplenishAO»»": { - "title": "ResultBody«List«ChangeCiReplenishAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiReplenishAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeCiSyncItemAO»»": { - "title": "ResultBody«List«ChangeCiSyncItemAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiSyncItemAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeCiTypeName»»": { - "title": "ResultBody«List«ChangeCiTypeName»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiTypeName", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeSceneAO»»": { - "title": "ResultBody«List«ChangeSceneAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeSceneAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeSceneTempAO»»": { - "title": "ResultBody«List«ChangeSceneTempAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeSceneTempAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChangeTemplateSceneDetailAO»»": { - "title": "ResultBody«List«ChangeTemplateSceneDetailAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeTemplateSceneDetailAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ChatMessageAO»»": { - "title": "ResultBody«List«ChatMessageAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChatMessageAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«CiTypeAO»»": { - "title": "ResultBody«List«CiTypeAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CiTypeAO0", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«CiTypeListAO»»": { - "title": "ResultBody«List«CiTypeListAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CiTypeListAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«CommonLinkAO»»": { - "title": "ResultBody«List«CommonLinkAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CommonLinkAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ConfigAO»»": { - "title": "ResultBody«List«ConfigAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ConfigAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ConflictedCiChangeAO»»": { - "title": "ResultBody«List«ConflictedCiChangeAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ConflictedCiChangeAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«DutyAO»»": { - "title": "ResultBody«List«DutyAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«DutyClassAO»»": { - "title": "ResultBody«List«DutyClassAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«DutyClassLogAO»»": { - "title": "ResultBody«List«DutyClassLogAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassLogAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«DutyClassLogActInfoAO»»": { - "title": "ResultBody«List«DutyClassLogActInfoAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassLogActInfoAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«DutyClassLogTicketAO»»": { - "title": "ResultBody«List«DutyClassLogTicketAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassLogTicketAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«DutyClassUserAO»»": { - "title": "ResultBody«List«DutyClassUserAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DutyClassUserAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«DynamicColumnAO»»": { - "title": "ResultBody«List«DynamicColumnAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/DynamicColumnAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«FiledAuthAO»»": { - "title": "ResultBody«List«FiledAuthAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/FiledAuthAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«FormComponentAO»»": { - "title": "ResultBody«List«FormComponentAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/FormComponentAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«GovernanceDeptVO»»": { - "title": "ResultBody«List«GovernanceDeptVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/GovernanceDeptVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«GovernanceUserDepartMentVO»»": { - "title": "ResultBody«List«GovernanceUserDepartMentVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/GovernanceUserDepartMentVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«HotServiceAO»»": { - "title": "ResultBody«List«HotServiceAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/HotServiceAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«HubbleResourceType»»": { - "title": "ResultBody«List«HubbleResourceType»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/HubbleResourceType", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«IncidentAO»»": { - "title": "ResultBody«List«IncidentAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«IncidentCiAO»»": { - "title": "ResultBody«List«IncidentCiAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCiAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«IncidentCiRelationAO»»": { - "title": "ResultBody«List«IncidentCiRelationAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCiRelationAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«IncidentCommentActivityAO»»": { - "title": "ResultBody«List«IncidentCommentActivityAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentCommentActivityAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«IncidentNoVO»»": { - "title": "ResultBody«List«IncidentNoVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentNoVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«IncidentPrioritySumAO»»": { - "title": "ResultBody«List«IncidentPrioritySumAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentPrioritySumAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«IncidentRelateTicketAO»»": { - "title": "ResultBody«List«IncidentRelateTicketAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentRelateTicketAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«InterfaceCallLogAO»»": { - "title": "ResultBody«List«InterfaceCallLogAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/InterfaceCallLogAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«KmApprovalAO»»": { - "title": "ResultBody«List«KmApprovalAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmApprovalAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«KmCatalogAO»»": { - "title": "ResultBody«List«KmCatalogAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmCatalogAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«KmKnowledgeAO»»": { - "title": "ResultBody«List«KmKnowledgeAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«KmKnowledgeCiAO»»": { - "title": "ResultBody«List«KmKnowledgeCiAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeCiAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«KmKnowledgeGraphEntityVO»»": { - "title": "ResultBody«List«KmKnowledgeGraphEntityVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeGraphEntityVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«KmKnowledgeTicketAO»»": { - "title": "ResultBody«List«KmKnowledgeTicketAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/KmKnowledgeTicketAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«Map«string,object»»»": { - "title": "ResultBody«List«Map«string,object»»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«Map»»": { - "title": "ResultBody«List«Map»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«MergeCountAO»»": { - "title": "ResultBody«List«MergeCountAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/MergeCountAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«NoticeAO»»": { - "title": "ResultBody«List«NoticeAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/NoticeAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«OptionConfigAO»»": { - "title": "ResultBody«List«OptionConfigAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OptionConfigAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«OrganizationAO»»": { - "title": "ResultBody«List«OrganizationAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OrganizationAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«OrganizationGroupAO»»": { - "title": "ResultBody«List«OrganizationGroupAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OrganizationGroupAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«OrganizationGroupMemberAO»»": { - "title": "ResultBody«List«OrganizationGroupMemberAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OrganizationGroupMemberAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«OrganizationLevelGroupAO»»": { - "title": "ResultBody«List«OrganizationLevelGroupAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/OrganizationLevelGroupAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«PbChangeCiAO»»": { - "title": "ResultBody«List«PbChangeCiAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbChangeCiAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«PbChangeCiReplenishAO»»": { - "title": "ResultBody«List«PbChangeCiReplenishAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbChangeCiReplenishAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«PbInfoAO»»": { - "title": "ResultBody«List«PbInfoAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbInfoAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«PbItpbTicketAO»»": { - "title": "ResultBody«List«PbItpbTicketAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbItpbTicketAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«PbManagementEntry»»": { - "title": "ResultBody«List«PbManagementEntry»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbManagementEntry", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«PbSubTaskAO»»": { - "title": "ResultBody«List«PbSubTaskAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/PbSubTaskAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ProductVO»»": { - "title": "ResultBody«List«ProductVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ProductVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ServiceAO»»": { - "title": "ResultBody«List«ServiceAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ServiceCatalogDetailVO»»": { - "title": "ResultBody«List«ServiceCatalogDetailVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogDetailVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ServiceCategoryAO»»": { - "title": "ResultBody«List«ServiceCategoryAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCategoryAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ServiceDatailFavouriteAO»»": { - "title": "ResultBody«List«ServiceDatailFavouriteAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceDatailFavouriteAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«ServiceFavouriteAO»»": { - "title": "ResultBody«List«ServiceFavouriteAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceFavouriteAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«SimilarDocumentResultAO»»": { - "title": "ResultBody«List«SimilarDocumentResultAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SimilarDocumentResultAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«SmSlaConfigAO»»": { - "title": "ResultBody«List«SmSlaConfigAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SmSlaConfigAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«SubTaskAO»»": { - "title": "ResultBody«List«SubTaskAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SubTaskAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«SysUserLogAO»»": { - "title": "ResultBody«List«SysUserLogAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SysUserLogAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«TemplateAO»»": { - "title": "ResultBody«List«TemplateAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TemplateAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«TicketActivityVO»»": { - "title": "ResultBody«List«TicketActivityVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TicketActivityVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«TicketCommentVO»»": { - "title": "ResultBody«List«TicketCommentVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TicketCommentVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«TicketCountVO»»": { - "title": "ResultBody«List«TicketCountVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TicketCountVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«TicketDataExistAO»»": { - "title": "ResultBody«List«TicketDataExistAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TicketDataExistAO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«TicketProcessVO»»": { - "title": "ResultBody«List«TicketProcessVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TicketProcessVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«UserApiVO»»": { - "title": "ResultBody«List«UserApiVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/UserApiVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«UserGroupApiVO»»": { - "title": "ResultBody«List«UserGroupApiVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/UserGroupApiVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«UserGroupVO»»": { - "title": "ResultBody«List«UserGroupVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/UserGroupVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«UserSimpleDisplayApiVO»»": { - "title": "ResultBody«List«UserSimpleDisplayApiVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/UserSimpleDisplayApiVO", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«Void»»": { - "title": "ResultBody«List«Void»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "Error-ModelName{namespace='java.lang', name='Void'}", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«int»»": { - "title": "ResultBody«List«int»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«List«string»»": { - "title": "ResultBody«List«string»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Map«int,List«ChangeCiColumn»»»": { - "title": "ResultBody«Map«int,List«ChangeCiColumn»»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "additionalProperties": { - "type": "array", - "exampleSetFlag": false, - "items": { - "$ref": "#/components/schemas/ChangeCiColumn", - "exampleSetFlag": false - } - }, - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Map«int,List«ChangeCiRelationAO»»»": { - "title": "ResultBody«Map«int,List«ChangeCiRelationAO»»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "additionalProperties": { - "type": "array", - "exampleSetFlag": false, - "items": { - "$ref": "#/components/schemas/ChangeCiRelationAO", - "exampleSetFlag": false - } - }, - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Map«int,List«PbChangeCiRelationAO»»»": { - "title": "ResultBody«Map«int,List«PbChangeCiRelationAO»»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "additionalProperties": { - "type": "array", - "exampleSetFlag": false, - "items": { - "$ref": "#/components/schemas/PbChangeCiRelationAO", - "exampleSetFlag": false - } - }, - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Map«string,List«ChangeApprovalAO»»»": { - "title": "ResultBody«Map«string,List«ChangeApprovalAO»»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "additionalProperties": { - "type": "array", - "exampleSetFlag": false, - "items": { - "$ref": "#/components/schemas/ChangeApprovalAO", - "exampleSetFlag": false - } - }, - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Map«string,List«ServiceCategoryAO»»»": { - "title": "ResultBody«Map«string,List«ServiceCategoryAO»»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "additionalProperties": { - "type": "array", - "exampleSetFlag": false, - "items": { - "$ref": "#/components/schemas/ServiceCategoryAO", - "exampleSetFlag": false - } - }, - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Map«string,NodeConfig»»": { - "title": "ResultBody«Map«string,NodeConfig»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "additionalProperties": { - "$ref": "#/components/schemas/NodeConfig", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Map«string,long»»": { - "title": "ResultBody«Map«string,long»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "additionalProperties": { - "type": "integer", - "format": "int64", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Map«string,object»»": { - "title": "ResultBody«Map«string,object»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Map»": { - "title": "ResultBody«Map»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«OptionConfigAO»": { - "title": "ResultBody«OptionConfigAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/OptionConfigAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«OrganizationAO»": { - "title": "ResultBody«OrganizationAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/OrganizationAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«OrganizationGroupAO»": { - "title": "ResultBody«OrganizationGroupAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/OrganizationGroupAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«OrganizationGroupMemberAO»": { - "title": "ResultBody«OrganizationGroupMemberAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/OrganizationGroupMemberAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«OverallChangeStatusAO»": { - "title": "ResultBody«OverallChangeStatusAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/OverallChangeStatusAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«AdTowerAO»»": { - "title": "ResultBody«PageResult«AdTowerAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«AdTowerAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«AdUserBriefAO»»": { - "title": "ResultBody«PageResult«AdUserBriefAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«AdUserBriefAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«BizCategoryListAO»»": { - "title": "ResultBody«PageResult«BizCategoryListAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«BizCategoryListAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«CabAO»»": { - "title": "ResultBody«PageResult«CabAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«CabAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«CatalogPrivilegeAO»»": { - "title": "ResultBody«PageResult«CatalogPrivilegeAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«CatalogPrivilegeAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeAutomationAO»»": { - "title": "ResultBody«PageResult«ChangeAutomationAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeAutomationAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeCatalogAO»»": { - "title": "ResultBody«PageResult«ChangeCatalogAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeCatalogAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeCiAO»»": { - "title": "ResultBody«PageResult«ChangeCiAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeCiAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeCiExecAO»»": { - "title": "ResultBody«PageResult«ChangeCiExecAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeCiExecAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeCiRelationAO»»": { - "title": "ResultBody«PageResult«ChangeCiRelationAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeCiRelationAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeCommentAO»»": { - "title": "ResultBody«PageResult«ChangeCommentAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeCommentAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeCoordinationUserAO»»": { - "title": "ResultBody«PageResult«ChangeCoordinationUserAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeCoordinationUserAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeRecordAO»»": { - "title": "ResultBody«PageResult«ChangeRecordAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeRecordAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeSceneAO»»": { - "title": "ResultBody«PageResult«ChangeSceneAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeSceneAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeTemplateAO»»": { - "title": "ResultBody«PageResult«ChangeTemplateAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeTemplateAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeTemplateBasicAO»»": { - "title": "ResultBody«PageResult«ChangeTemplateBasicAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeTemplateBasicAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChangeViolationAO»»": { - "title": "ResultBody«PageResult«ChangeViolationAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChangeViolationAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChatConversationAO»»": { - "title": "ResultBody«PageResult«ChatConversationAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChatConversationAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChatConversationStatisticAO»»": { - "title": "ResultBody«PageResult«ChatConversationStatisticAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChatConversationStatisticAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChatConversationWaitAO»»": { - "title": "ResultBody«PageResult«ChatConversationWaitAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChatConversationWaitAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChatMessage»»": { - "title": "ResultBody«PageResult«ChatMessage»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChatMessage»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChatServiceUserMonitorAO»»": { - "title": "ResultBody«PageResult«ChatServiceUserMonitorAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChatServiceUserMonitorAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChatWaitMonitorAO»»": { - "title": "ResultBody«PageResult«ChatWaitMonitorAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChatWaitMonitorAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ChatWaitStatisticAO»»": { - "title": "ResultBody«PageResult«ChatWaitStatisticAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ChatWaitStatisticAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«CrSubTaskAO»»": { - "title": "ResultBody«PageResult«CrSubTaskAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«CrSubTaskAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DashBoardAppEntry»»": { - "title": "ResultBody«PageResult«DashBoardAppEntry»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DashBoardAppEntry»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«Document»»": { - "title": "ResultBody«PageResult«Document»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«Document»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DutyAO»»": { - "title": "ResultBody«PageResult«DutyAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DutyAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DutyClassAO»»": { - "title": "ResultBody«PageResult«DutyClassAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DutyClassAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DutyClassChangeAO»»": { - "title": "ResultBody«PageResult«DutyClassChangeAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DutyClassChangeAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DutyClassLeaveAO»»": { - "title": "ResultBody«PageResult«DutyClassLeaveAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DutyClassLeaveAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DutyClassLogAO»»": { - "title": "ResultBody«PageResult«DutyClassLogAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DutyClassLogAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DutyClassLogTicketAO»»": { - "title": "ResultBody«PageResult«DutyClassLogTicketAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DutyClassLogTicketAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DutyCountAO»»": { - "title": "ResultBody«PageResult«DutyCountAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DutyCountAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DutyFestivalAO»»": { - "title": "ResultBody«PageResult«DutyFestivalAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DutyFestivalAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DutyWorkDateAO»»": { - "title": "ResultBody«PageResult«DutyWorkDateAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DutyWorkDateAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«DutyWorkLocationAO»»": { - "title": "ResultBody«PageResult«DutyWorkLocationAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«DutyWorkLocationAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«EmailParseConfigAO»»": { - "title": "ResultBody«PageResult«EmailParseConfigAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«EmailParseConfigAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«EmailParseFilterAO»»": { - "title": "ResultBody«PageResult«EmailParseFilterAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«EmailParseFilterAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«EmailParseHistoryAO»»": { - "title": "ResultBody«PageResult«EmailParseHistoryAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«EmailParseHistoryAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«EmailParseKeywordBizAO»»": { - "title": "ResultBody«PageResult«EmailParseKeywordBizAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«EmailParseKeywordBizAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«FormDefinitionAO»»": { - "title": "ResultBody«PageResult«FormDefinitionAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«FormDefinitionAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«IncidentAO»»": { - "title": "ResultBody«PageResult«IncidentAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«IncidentAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«IncidentActivityAO»»": { - "title": "ResultBody«PageResult«IncidentActivityAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«IncidentActivityAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«IncidentCiAO»»": { - "title": "ResultBody«PageResult«IncidentCiAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«IncidentCiAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«IncidentCiRelationAO»»": { - "title": "ResultBody«PageResult«IncidentCiRelationAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«IncidentCiRelationAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«IncidentEntryAO»»": { - "title": "ResultBody«PageResult«IncidentEntryAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«IncidentEntryAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«IncidentNoVO»»": { - "title": "ResultBody«PageResult«IncidentNoVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«IncidentNoVO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«IncidentRelateTicketAO»»": { - "title": "ResultBody«PageResult«IncidentRelateTicketAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«IncidentRelateTicketAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«IncidentSlaAO»»": { - "title": "ResultBody«PageResult«IncidentSlaAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«IncidentSlaAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ItsmConfigAO»»": { - "title": "ResultBody«PageResult«ItsmConfigAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ItsmConfigAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ItsmStaticTemplateAO»»": { - "title": "ResultBody«PageResult«ItsmStaticTemplateAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ItsmStaticTemplateAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ItsmUserAO»»": { - "title": "ResultBody«PageResult«ItsmUserAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ItsmUserAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KmCatalogAO»»": { - "title": "ResultBody«PageResult«KmCatalogAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmCatalogAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KmCommentAO»»": { - "title": "ResultBody«PageResult«KmCommentAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmCommentAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KmItsmMyApprovedAO»»": { - "title": "ResultBody«PageResult«KmItsmMyApprovedAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmItsmMyApprovedAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KmKnowledgeAO»»": { - "title": "ResultBody«PageResult«KmKnowledgeAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmKnowledgeAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KmKnowledgeGraphEntityRelateDataVO»»": { - "title": "ResultBody«PageResult«KmKnowledgeGraphEntityRelateDataVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmKnowledgeGraphEntityRelateDataVO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KmKnowledgeGraphEntityRelateVO»»": { - "title": "ResultBody«PageResult«KmKnowledgeGraphEntityRelateVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmKnowledgeGraphEntityRelateVO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KmKnowledgePortalAO»»": { - "title": "ResultBody«PageResult«KmKnowledgePortalAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmKnowledgePortalAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KmKnowledgeTicketAO»»": { - "title": "ResultBody«PageResult«KmKnowledgeTicketAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmKnowledgeTicketAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KmKnowledgeTicketPortalAO»»": { - "title": "ResultBody«PageResult«KmKnowledgeTicketPortalAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmKnowledgeTicketPortalAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KmRecommendAO»»": { - "title": "ResultBody«PageResult«KmRecommendAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KmRecommendAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«KnowledgeVersionAO»»": { - "title": "ResultBody«PageResult«KnowledgeVersionAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«KnowledgeVersionAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«List«string»»»": { - "title": "ResultBody«PageResult«List«string»»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«List«string»»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«OptionConfigAO»»": { - "title": "ResultBody«PageResult«OptionConfigAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«OptionConfigAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«OrganizationGroupAO»»": { - "title": "ResultBody«PageResult«OrganizationGroupAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«OrganizationGroupAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«OrganizationGroupMemberAO»»": { - "title": "ResultBody«PageResult«OrganizationGroupMemberAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«OrganizationGroupMemberAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«PbApprovalAO»»": { - "title": "ResultBody«PageResult«PbApprovalAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«PbApprovalAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«PbChangeCiAO»»": { - "title": "ResultBody«PageResult«PbChangeCiAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«PbChangeCiAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«PbChangeCiRelationAO»»": { - "title": "ResultBody«PageResult«PbChangeCiRelationAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«PbChangeCiRelationAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«PbInfoAO»»": { - "title": "ResultBody«PageResult«PbInfoAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«PbInfoAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«PbManagementPbEntry»»": { - "title": "ResultBody«PageResult«PbManagementPbEntry»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«PbManagementPbEntry»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«PbManagementReportEntry»»": { - "title": "ResultBody«PageResult«PbManagementReportEntry»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«PbManagementReportEntry»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«PbRelateTicketAO»»": { - "title": "ResultBody«PageResult«PbRelateTicketAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«PbRelateTicketAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«PbSubTaskAO»»": { - "title": "ResultBody«PageResult«PbSubTaskAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«PbSubTaskAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«PersonTicketsCommonVO»»": { - "title": "ResultBody«PageResult«PersonTicketsCommonVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«PersonTicketsCommonVO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«PnInfoWithSlaVO»»": { - "title": "ResultBody«PageResult«PnInfoWithSlaVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«PnInfoWithSlaVO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«SearchResultAO»»": { - "title": "ResultBody«PageResult«SearchResultAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«SearchResultAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ServiceCatalogAO»»": { - "title": "ResultBody«PageResult«ServiceCatalogAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ServiceCatalogAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ServiceCatalogApprovalAO»»": { - "title": "ResultBody«PageResult«ServiceCatalogApprovalAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ServiceCatalogApprovalAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ServiceCatalogDetailAO»»": { - "title": "ResultBody«PageResult«ServiceCatalogDetailAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ServiceCatalogDetailAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ServiceCatalogItsmMyApprovedAO»»": { - "title": "ResultBody«PageResult«ServiceCatalogItsmMyApprovedAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ServiceCatalogItsmMyApprovedAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ServiceCategoryAO»»": { - "title": "ResultBody«PageResult«ServiceCategoryAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ServiceCategoryAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ServiceFavouriteAO»»": { - "title": "ResultBody«PageResult«ServiceFavouriteAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ServiceFavouriteAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«ServiceTicketAO»»": { - "title": "ResultBody«PageResult«ServiceTicketAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«ServiceTicketAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«SmSlaConfigAO»»": { - "title": "ResultBody«PageResult«SmSlaConfigAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«SmSlaConfigAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«SubTaskAO»»": { - "title": "ResultBody«PageResult«SubTaskAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«SubTaskAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«SubTaskPageAO»»": { - "title": "ResultBody«PageResult«SubTaskPageAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«SubTaskPageAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«SysConfigAO»»": { - "title": "ResultBody«PageResult«SysConfigAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«SysConfigAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«SysUserLogAO»»": { - "title": "ResultBody«PageResult«SysUserLogAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«SysUserLogAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«TemplateAO»»": { - "title": "ResultBody«PageResult«TemplateAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«TemplateAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«TemplatePageAO»»": { - "title": "ResultBody«PageResult«TemplatePageAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«TemplatePageAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«TenantDisplayDTO»»": { - "title": "ResultBody«PageResult«TenantDisplayDTO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«TenantDisplayDTO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«TicketEvaluateAO»»": { - "title": "ResultBody«PageResult«TicketEvaluateAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«TicketEvaluateAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«TicketVO»»": { - "title": "ResultBody«PageResult«TicketVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«TicketVO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«UserApiVO»»": { - "title": "ResultBody«PageResult«UserApiVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«UserApiVO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«UserInfoVO»»": { - "title": "ResultBody«PageResult«UserInfoVO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«UserInfoVO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«WindowAO»»": { - "title": "ResultBody«PageResult«WindowAO»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«WindowAO»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PageResult«string»»": { - "title": "ResultBody«PageResult«string»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PageResult«string»", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PbAttachmentAO»": { - "title": "ResultBody«PbAttachmentAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PbAttachmentAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PbChangeCiAO»": { - "title": "ResultBody«PbChangeCiAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PbChangeCiAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PbChangeCiReplenishAO»": { - "title": "ResultBody«PbChangeCiReplenishAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PbChangeCiReplenishAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PbCommentAO»": { - "title": "ResultBody«PbCommentAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PbCommentAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PbInfoAO»": { - "title": "ResultBody«PbInfoAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PbInfoAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PbInfoDetailAO»": { - "title": "ResultBody«PbInfoDetailAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PbInfoDetailAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PbSubTaskAO»": { - "title": "ResultBody«PbSubTaskAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PbSubTaskAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PortalAO»": { - "title": "ResultBody«PortalAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PortalAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«PortalConfigVO»": { - "title": "ResultBody«PortalConfigVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/PortalConfigVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ProcessDefinitionResourceVO»": { - "title": "ResultBody«ProcessDefinitionResourceVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ProcessDefinitionResourceVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«RiskAssessmentAO»": { - "title": "ResultBody«RiskAssessmentAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/RiskAssessmentAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ServiceAttachmentAO»": { - "title": "ResultBody«ServiceAttachmentAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ServiceAttachmentAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ServiceCatalogAO»": { - "title": "ResultBody«ServiceCatalogAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ServiceCatalogAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ServiceCatalogDetailAO»": { - "title": "ResultBody«ServiceCatalogDetailAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ServiceCatalogDetailAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ServiceCatalogDetailVO»": { - "title": "ResultBody«ServiceCatalogDetailVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ServiceCatalogDetailVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ServiceCategoryAO»": { - "title": "ResultBody«ServiceCategoryAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ServiceCategoryAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ServiceFavouriteAO»": { - "title": "ResultBody«ServiceFavouriteAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ServiceFavouriteAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ServiceImportResultAO»": { - "title": "ResultBody«ServiceImportResultAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ServiceImportResultAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«ServiceTicketAO»": { - "title": "ResultBody«ServiceTicketAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/ServiceTicketAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Set«string»»": { - "title": "ResultBody«Set«string»»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«SmSlaConfigAO»": { - "title": "ResultBody«SmSlaConfigAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/SmSlaConfigAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«SmSlaConfigSRAO»": { - "title": "ResultBody«SmSlaConfigSRAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/SmSlaConfigSRAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«SmSlaResponseResolveTimeVO»": { - "title": "ResultBody«SmSlaResponseResolveTimeVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/SmSlaResponseResolveTimeVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«SubTaskAO»": { - "title": "ResultBody«SubTaskAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/SubTaskAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«SysConfigAO»": { - "title": "ResultBody«SysConfigAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/SysConfigAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«TemplateAO»": { - "title": "ResultBody«TemplateAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/TemplateAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«TemplatePageAO»": { - "title": "ResultBody«TemplatePageAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/TemplatePageAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«TickCommentCreateVo»": { - "title": "ResultBody«TickCommentCreateVo»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/TickCommentCreateVo", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«TicketAttachmentVO»": { - "title": "ResultBody«TicketAttachmentVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/TicketAttachmentVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«TicketCommentVO»": { - "title": "ResultBody«TicketCommentVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/TicketCommentVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«TicketDataExistAO»": { - "title": "ResultBody«TicketDataExistAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/TicketDataExistAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«TicketEvaluateAO»": { - "title": "ResultBody«TicketEvaluateAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/TicketEvaluateAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«TypeInfosVO»": { - "title": "ResultBody«TypeInfosVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/TypeInfosVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«UserApiVO»": { - "title": "ResultBody«UserApiVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/UserApiVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«UserIsVipVO»": { - "title": "ResultBody«UserIsVipVO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/UserIsVipVO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«Void»": { - "title": "ResultBody«Void»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«WindowAO»": { - "title": "ResultBody«WindowAO»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "$ref": "#/components/schemas/WindowAO", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«boolean»": { - "title": "ResultBody«boolean»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "boolean", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«int»": { - "title": "ResultBody«int»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«long»": { - "title": "ResultBody«long»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«object»": { - "title": "ResultBody«object»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "object", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ResultBody«string»": { - "title": "ResultBody«string»", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "data": { - "type": "string", - "exampleSetFlag": true - }, - "message": { - "type": "string", - "exampleSetFlag": true - }, - "messageCode": { - "type": "string", - "exampleSetFlag": true - }, - "success": { - "type": "boolean", - "exampleSetFlag": true - }, - "timestamp": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "RiskAssessmentAO": { - "title": "RiskAssessmentAO", - "type": "object", - "properties": { - "affectCriticalApp": { - "type": "boolean", - "exampleSetFlag": true - }, - "conflicted": { - "type": "boolean", - "exampleSetFlag": true - }, - "conflictedCiList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ConflictedCiChangeAO", - "exampleSetFlag": false - } - }, - "criticalCiList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ChangeCiAO", - "exampleSetFlag": false - } - }, - "duringBusPeakPeriod": { - "type": "boolean", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "formJsonToMap": { - "type": "object", - "exampleSetFlag": true - }, - "hasRollbackPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "hasTestPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "implTime": { - "type": "string", - "exampleSetFlag": true - }, - "incidentRelated": { - "type": "boolean", - "exampleSetFlag": true - }, - "outagesDetected": { - "type": "string", - "extensions": { - "$hint$className": "Priority" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "refRiskResult": { - "type": "string", - "extensions": { - "$hint$className": "RiskLevel" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "riskComments": { - "type": "string", - "exampleSetFlag": true - }, - "windowList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/WindowAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "RiskAssessmentUpdateReq": { - "title": "RiskAssessmentUpdateReq", - "type": "object", - "properties": { - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "riskComments": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "RiskCalcReq": { - "title": "RiskCalcReq", - "type": "object", - "properties": { - "hasRollbackPlan": { - "type": "boolean", - "exampleSetFlag": true - }, - "planEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rollbackType": { - "type": "string", - "extensions": { - "$hint$className": "RollbackType" - }, - "exampleSetFlag": true, - "enum": [ - "AUTO", - "NEED", - "NOT_NEED" - ] - }, - "testResultType": { - "type": "string", - "extensions": { - "$hint$className": "TestResultType" - }, - "exampleSetFlag": true, - "enum": [ - "BAU_CHANGE", - "NO_TEST_ENV", - "PASSED", - "TEST_MACHINE" - ] - } - }, - "exampleSetFlag": false - }, - "SatisfactionPercentageAO": { - "title": "SatisfactionPercentageAO", - "type": "object", - "properties": { - "percentage": { - "type": "string", - "exampleSetFlag": true - }, - "satisfactionType": { - "type": "string", - "extensions": { - "$hint$className": "SatisfactionType" - }, - "exampleSetFlag": true, - "enum": [ - "BAD", - "GOOD", - "NORMAL", - "TERRIBLE", - "WONDERFUL" - ] - } - }, - "exampleSetFlag": false - }, - "SdSessionSettingsAO": { - "title": "SdSessionSettingsAO", - "type": "object", - "properties": { - "beforeAccessSet": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "beforeAccessTip": { - "type": "string", - "exampleSetFlag": true - }, - "beforeAccessTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "defaultQualifyNumber": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "noSeatOnlineTip": { - "type": "string", - "exampleSetFlag": true - }, - "noSeatOnlineTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "queueTip": { - "type": "string", - "exampleSetFlag": true - }, - "queueTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "seatOrderThreshold": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "seatQualifyNumberEnable": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "seatSessionThreshold": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "transferLineTip": { - "type": "string", - "exampleSetFlag": true - }, - "transferLineTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "transferringLineTip": { - "type": "string", - "exampleSetFlag": true - }, - "transferringLineTipCn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SdSessionSettingsCreateReq": { - "title": "SdSessionSettingsCreateReq", - "type": "object", - "properties": { - "beforeAccessSet": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "beforeAccessTip": { - "type": "string", - "exampleSetFlag": true - }, - "beforeAccessTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "defaultQualifyNumber": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "noSeatOnlineTip": { - "type": "string", - "exampleSetFlag": true - }, - "noSeatOnlineTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "queueTip": { - "type": "string", - "exampleSetFlag": true - }, - "queueTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "seatOrderThreshold": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "seatQualifyNumberEnable": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "seatSessionThreshold": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "transferLineTip": { - "type": "string", - "exampleSetFlag": true - }, - "transferLineTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "transferringLineTip": { - "type": "string", - "exampleSetFlag": true - }, - "transferringLineTipCn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SdSessionSettingsUpdateReq": { - "title": "SdSessionSettingsUpdateReq", - "type": "object", - "properties": { - "beforeAccessSet": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "beforeAccessTip": { - "type": "string", - "exampleSetFlag": true - }, - "beforeAccessTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "defaultQualifyNumber": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "noSeatOnlineTip": { - "type": "string", - "exampleSetFlag": true - }, - "noSeatOnlineTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "queueTip": { - "type": "string", - "exampleSetFlag": true - }, - "queueTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "seatOrderThreshold": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "seatQualifyNumberEnable": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "seatSessionThreshold": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "transferLineTip": { - "type": "string", - "exampleSetFlag": true - }, - "transferLineTipCn": { - "type": "string", - "exampleSetFlag": true - }, - "transferringLineTip": { - "type": "string", - "exampleSetFlag": true - }, - "transferringLineTipCn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SearchResultAO": { - "title": "SearchResultAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceAO": { - "title": "ServiceAO", - "type": "object", - "properties": { - "display": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imageList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AttachmentAO", - "exampleSetFlag": false - } - }, - "onlineStatus": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceAttachmentAO": { - "title": "ServiceAttachmentAO", - "type": "object", - "properties": { - "attachPath": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "fileKey": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imgUrl": { - "type": "string", - "exampleSetFlag": true - }, - "itemId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "itemType": { - "type": "string", - "exampleSetFlag": true - }, - "requestId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "uploadBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCatalogAO": { - "title": "ServiceCatalogAO", - "type": "object", - "properties": { - "applyAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "applyBy": { - "type": "string", - "exampleSetFlag": true - }, - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "bizProcessId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bpmCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmId": { - "type": "string", - "exampleSetFlag": true - }, - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "categoryTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "code": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "curUserRole": { - "type": "string", - "extensions": { - "$hint$className": "RoleType" - }, - "exampleSetFlag": true, - "enum": [ - "MEMBER", - "OWNER" - ] - }, - "delivery": { - "type": "string", - "exampleSetFlag": true - }, - "deliveryMode": { - "type": "string", - "extensions": { - "$hint$className": "DeliveryModeType" - }, - "exampleSetFlag": true, - "enum": [ - "FORM", - "MANUAL" - ] - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "favourite": { - "type": "boolean", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isHot": { - "type": "string", - "extensions": { - "$hint$className": "CatalogIsHotType" - }, - "exampleSetFlag": true, - "enum": [ - "HOT", - "NOT_HOT" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "openProductNames": { - "type": "string", - "exampleSetFlag": true - }, - "openType": { - "type": "string", - "extensions": { - "$hint$className": "OpenType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "PART" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "priceDescription": { - "type": "string", - "exampleSetFlag": true - }, - "priceDescriptionCn": { - "type": "string", - "exampleSetFlag": true - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServicePrivilegeAO", - "exampleSetFlag": false - } - }, - "serviceDeliveryTime": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeliveryTimeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - }, - "serviceSupplierName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceType": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "subServiceCatalogIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "subServiceCatalogs": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogAO", - "exampleSetFlag": false - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryCn": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "VisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - }, - "xbuilderPageCode": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderPageGroupCode": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderProjectCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCatalogApprovalAO": { - "title": "ServiceCatalogApprovalAO", - "type": "object", - "properties": { - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approvalResult": { - "type": "string", - "extensions": { - "$hint$className": "ApproveResultType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECTED" - ] - }, - "approvalResultZh": { - "type": "string", - "exampleSetFlag": true - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "bpmId": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCatalogApprovalCreateReq": { - "title": "ServiceCatalogApprovalCreateReq", - "type": "object", - "properties": { - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approvalResult": { - "type": "string", - "extensions": { - "$hint$className": "ApproveResultType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECTED" - ] - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCatalogApprovalSearchReq": { - "title": "ServiceCatalogApprovalSearchReq", - "type": "object", - "properties": { - "applyBy": { - "type": "string", - "exampleSetFlag": true - }, - "approvalAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approvalResult": { - "type": "string", - "extensions": { - "$hint$className": "ApproveResultType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECTED" - ] - }, - "approvalStatus": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "MY_APPROVED", - "MY_SUBMITED", - "PENDING_TO_ME" - ] - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogStatusType": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "openProductNameExc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCatalogBatchSearchReq": { - "title": "ServiceCatalogBatchSearchReq", - "type": "object", - "properties": { - "catalogIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "ServiceCatalogDetailAO": { - "title": "ServiceCatalogDetailAO", - "type": "object", - "properties": { - "applyAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "applyBy": { - "type": "string", - "exampleSetFlag": true - }, - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "bizProcessId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bpmCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmId": { - "type": "string", - "exampleSetFlag": true - }, - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "categoryTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "code": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "curUserRole": { - "type": "string", - "extensions": { - "$hint$className": "RoleType" - }, - "exampleSetFlag": true, - "enum": [ - "MEMBER", - "OWNER" - ] - }, - "delivery": { - "type": "string", - "exampleSetFlag": true - }, - "deliveryMode": { - "type": "string", - "extensions": { - "$hint$className": "DeliveryModeType" - }, - "exampleSetFlag": true, - "enum": [ - "FORM", - "MANUAL" - ] - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isHot": { - "type": "string", - "extensions": { - "$hint$className": "CatalogIsHotType" - }, - "exampleSetFlag": true, - "enum": [ - "HOT", - "NOT_HOT" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "openProductNames": { - "type": "string", - "exampleSetFlag": true - }, - "openType": { - "type": "string", - "extensions": { - "$hint$className": "OpenType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "PART" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "priceDescription": { - "type": "string", - "exampleSetFlag": true - }, - "priceDescriptionCn": { - "type": "string", - "exampleSetFlag": true - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServicePrivilegeAO", - "exampleSetFlag": false - } - }, - "serviceDeliveryTime": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeliveryTimeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - }, - "serviceSupplierName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceType": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "subServiceCatalogIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "subServiceCatalogs": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogAO", - "exampleSetFlag": false - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryCn": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "VisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - }, - "xbuilderPageCode": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderPageGroupCode": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderProjectCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCatalogDetailVO": { - "title": "ServiceCatalogDetailVO", - "type": "object", - "properties": { - "applyAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "applyBy": { - "type": "string", - "exampleSetFlag": true - }, - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "bizProcessId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bpmCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmId": { - "type": "string", - "exampleSetFlag": true - }, - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "categoryTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "code": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "curUserRole": { - "type": "string", - "extensions": { - "$hint$className": "RoleType" - }, - "exampleSetFlag": true, - "enum": [ - "MEMBER", - "OWNER" - ] - }, - "delivery": { - "type": "string", - "exampleSetFlag": true - }, - "deliveryMode": { - "type": "string", - "extensions": { - "$hint$className": "DeliveryModeType" - }, - "exampleSetFlag": true, - "enum": [ - "FORM", - "MANUAL" - ] - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imgFile": { - "$ref": "#/components/schemas/ItsmFileAO", - "exampleSetFlag": true - }, - "imgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isHot": { - "type": "string", - "extensions": { - "$hint$className": "CatalogIsHotType" - }, - "exampleSetFlag": true, - "enum": [ - "HOT", - "NOT_HOT" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "openProductNames": { - "type": "string", - "exampleSetFlag": true - }, - "openType": { - "type": "string", - "extensions": { - "$hint$className": "OpenType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "PART" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "priceDescription": { - "type": "string", - "exampleSetFlag": true - }, - "priceDescriptionCn": { - "type": "string", - "exampleSetFlag": true - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServicePrivilegeAO", - "exampleSetFlag": false - } - }, - "serviceDeliveryTime": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeliveryTimeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - }, - "serviceSupplierName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceType": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "subServiceCatalogIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "subServiceCatalogs": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogAO", - "exampleSetFlag": false - } - }, - "subServiceCatalogsVO": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SubServiceCatalogDetailVO", - "exampleSetFlag": false - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryCn": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "VisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - }, - "xbuilderPageCode": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderPageGroupCode": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderProjectCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCatalogItsmMyApprovedAO": { - "title": "ServiceCatalogItsmMyApprovedAO", - "type": "object", - "properties": { - "applyAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approvalAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "approvalResult": { - "type": "string", - "extensions": { - "$hint$className": "ApproveResultType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVED", - "REJECTED" - ] - }, - "approvalResultZh": { - "type": "string", - "exampleSetFlag": true - }, - "approver": { - "type": "string", - "exampleSetFlag": true - }, - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmId": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCatalogSearchReq": { - "title": "ServiceCatalogSearchReq", - "type": "object", - "properties": { - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmCode": { - "type": "string", - "exampleSetFlag": true - }, - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "isHot": { - "type": "string", - "extensions": { - "$hint$className": "CatalogIsHotType" - }, - "exampleSetFlag": true, - "enum": [ - "HOT", - "NOT_HOT" - ] - }, - "onlineTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "openProductName": { - "type": "string", - "exampleSetFlag": true - }, - "openProductNameExc": { - "type": "string", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - }, - "serviceSupplierName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceType": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - }, - "statusList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCategoryAO": { - "title": "ServiceCategoryAO", - "type": "object", - "properties": { - "categoryDesc": { - "type": "string", - "exampleSetFlag": true - }, - "categoryDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "childrenCatalog": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogAO", - "exampleSetFlag": false - } - }, - "childrenCatalogName": { - "type": "string", - "exampleSetFlag": true - }, - "childrenCatalogNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "childrenCategory": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCategoryAO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "deletableCategory": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "img": { - "type": "string", - "exampleSetFlag": true - }, - "imgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imgUrl": { - "type": "string", - "exampleSetFlag": true - }, - "isValidate": { - "type": "string", - "extensions": { - "$hint$className": "CategoryStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "EFFECTIVE", - "INVALID" - ] - }, - "parentCateGoryName": { - "type": "string", - "exampleSetFlag": true - }, - "parentCateGoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "parentCategory": { - "$ref": "#/components/schemas/ServiceCategoryAO", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "tag": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCategoryCreateReq": { - "title": "ServiceCategoryCreateReq", - "type": "object", - "properties": { - "categoryDesc": { - "type": "string", - "exampleSetFlag": true - }, - "categoryDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "img": { - "type": "string", - "exampleSetFlag": true - }, - "imgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "openProductNames": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "tag": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCategorySearchReq": { - "title": "ServiceCategorySearchReq", - "type": "object", - "properties": { - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "ids": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "openProductNameExc": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "tag": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCategoryUpdateReq": { - "title": "ServiceCategoryUpdateReq", - "type": "object", - "properties": { - "categoryDesc": { - "type": "string", - "exampleSetFlag": true - }, - "categoryDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "img": { - "type": "string", - "exampleSetFlag": true - }, - "imgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "openProductNames": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "tag": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceCreateReq": { - "title": "ServiceCreateReq", - "type": "object", - "properties": { - "display": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameCn": { - "type": "string", - "exampleSetFlag": true - }, - "sort": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceDatailFavouriteAO": { - "title": "ServiceDatailFavouriteAO", - "type": "object", - "properties": { - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmId": { - "type": "string", - "exampleSetFlag": true - }, - "cancelTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogStatusZh": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "delivery": { - "type": "string", - "exampleSetFlag": true - }, - "deliveryMode": { - "type": "string", - "extensions": { - "$hint$className": "DeliveryModeType" - }, - "exampleSetFlag": true, - "enum": [ - "FORM", - "MANUAL" - ] - }, - "favouriteAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "favouriteStatus": { - "type": "string", - "extensions": { - "$hint$className": "FavouriteStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "CANCEL_FAVOURITE", - "FAVOURITE" - ] - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceDeskConfigAO": { - "title": "ServiceDeskConfigAO", - "type": "object", - "properties": { - "accessMode": { - "type": "string", - "exampleSetFlag": true - }, - "keywords": { - "type": "string", - "exampleSetFlag": true - }, - "transferManualMessage": { - "type": "string", - "exampleSetFlag": true - }, - "transferManualMode": { - "type": "string", - "exampleSetFlag": true - }, - "unSolveReplayCount": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "uselessReviewsCount": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceFavouriteAO": { - "title": "ServiceFavouriteAO", - "type": "object", - "properties": { - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmId": { - "type": "string", - "exampleSetFlag": true - }, - "cancelTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "catalogStatus": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - }, - "catalogStatusZh": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "favouriteAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "FavouriteStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "CANCEL_FAVOURITE", - "FAVOURITE" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceFavouriteSearchReq": { - "title": "ServiceFavouriteSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "FavouriteStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "CANCEL_FAVOURITE", - "FAVOURITE" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceImportResultAO": { - "title": "ServiceImportResultAO", - "type": "object", - "properties": { - "allSuccess": { - "type": "boolean", - "exampleSetFlag": true - }, - "notes": { - "type": "string", - "exampleSetFlag": true - }, - "notesCn": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServicePortalSearchReq": { - "title": "ServicePortalSearchReq", - "type": "object", - "properties": { - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameZh": { - "type": "string", - "exampleSetFlag": true - }, - "pageNumber": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pageSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "total": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServicePrivilegeAO": { - "title": "ServicePrivilegeAO", - "type": "object", - "properties": { - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServicePrivilegeCreateReq": { - "title": "ServicePrivilegeCreateReq", - "type": "object", - "properties": { - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceTicketAO": { - "title": "ServiceTicketAO", - "type": "object", - "properties": { - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmCode": { - "type": "string", - "exampleSetFlag": true - }, - "cancelNotes": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "completeTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "curBpmNode": { - "type": "string", - "exampleSetFlag": true - }, - "customerCompanyName": { - "type": "string", - "exampleSetFlag": true - }, - "favouriteStatus": { - "type": "string", - "extensions": { - "$hint$className": "FavouriteStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "CANCEL_FAVOURITE", - "FAVOURITE" - ] - }, - "formBpmConfig": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isComplete": { - "type": "boolean", - "exampleSetFlag": true - }, - "nodeType": { - "type": "string", - "extensions": { - "$hint$className": "NodeType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL", - "FORM" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "processStatus": { - "type": "string", - "exampleSetFlag": true - }, - "processStatusZh": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceType": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "submitterTower": { - "type": "string", - "exampleSetFlag": true - }, - "taskAssignee": { - "type": "string", - "exampleSetFlag": true - }, - "taskCreateTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "taskId": { - "type": "string", - "exampleSetFlag": true - }, - "taskNos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "vip": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "NO", - "YES" - ] - }, - "xbuilderPageCode": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderPageInfoId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "xbuilderProjectCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceTicketCreateReq": { - "title": "ServiceTicketCreateReq", - "type": "object", - "properties": { - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "variables": { - "type": "object", - "exampleSetFlag": true - }, - "xbuilderPageInfoId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "ServiceTicketSearchReq": { - "title": "ServiceTicketSearchReq", - "type": "object", - "properties": { - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "endCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "exportAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "extraScCode": { - "type": "string", - "exampleSetFlag": true - }, - "extraScCodeList": { - "uniqueItems": true, - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "favouriteStatus": { - "type": "string", - "extensions": { - "$hint$className": "FavouriteStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "CANCEL_FAVOURITE", - "FAVOURITE" - ] - }, - "formJsonString": { - "type": "string", - "exampleSetFlag": true - }, - "isComplete": { - "type": "boolean", - "exampleSetFlag": true - }, - "isTrueScaleAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "nos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "processStatus": { - "type": "string", - "exampleSetFlag": true - }, - "processStatusType": { - "type": "string", - "extensions": { - "$hint$className": "ProcessStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "COMPLETED", - "IN_PROGRESS", - "PORTAL_CANCELED", - "PORTAL_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELD", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT" - ] - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "query": { - "type": "string", - "exampleSetFlag": true - }, - "requestIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "requestNoList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "requestNos": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "slaStatusList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - } - }, - "startCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTimeBegin": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTimeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "taskAssignee": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "vip": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoType" - }, - "exampleSetFlag": true, - "enum": [ - "NO", - "YES" - ] - } - }, - "exampleSetFlag": false - }, - "SimilarDocumentResultAO": { - "title": "SimilarDocumentResultAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "risk": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SmSlaConfigAO": { - "title": "SmSlaConfigAO", - "type": "object", - "properties": { - "bizCategory": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "departmentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "filterDepartment": { - "type": "boolean", - "exampleSetFlag": true - }, - "hasRelatedTicket": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "notify": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigNotify" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "ENABLE" - ] - }, - "notifyResponseTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "notifySolveTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "notifyType": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigNotifyType" - }, - "exampleSetFlag": true, - "enum": [ - "DING_TALK", - "EMAIL", - "INNER_MAIL", - "WECHAT" - ] - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigPriority" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MIDDLE", - "URGENT" - ] - }, - "responseTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "slaSupportTimeVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SmSlaSupportTimeAO", - "exampleSetFlag": false - } - }, - "slaType": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigSlaType" - }, - "exampleSetFlag": true, - "enum": [ - "FAULT_MANAGEMENT", - "PROBLEM_MANAGEMENT", - "SERVICE_REQUEST", - "WORK_TICKET" - ] - }, - "solveTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DELETE", - "DISABLE", - "ENABLE" - ] - }, - "taskType": { - "type": "string", - "extensions": { - "$hint$className": "TaskType" - }, - "exampleSetFlag": true, - "enum": [ - "TASK_MANUAL", - "TASK_SERVICE" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SmSlaConfigCreateReq": { - "title": "SmSlaConfigCreateReq", - "type": "object", - "properties": { - "bizCategory": { - "type": "string", - "exampleSetFlag": true - }, - "conditionList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Condition", - "exampleSetFlag": false - } - }, - "departmentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "filterDepartment": { - "type": "boolean", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "notify": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigNotify" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "ENABLE" - ] - }, - "notifyResponseTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "notifySolveTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "notifyType": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigNotifyType" - }, - "exampleSetFlag": true, - "enum": [ - "DING_TALK", - "EMAIL", - "INNER_MAIL", - "WECHAT" - ] - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigPriority" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MIDDLE", - "URGENT" - ] - }, - "responseTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "slaSupportTimeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SmSlaSupportTimeCreateReq", - "exampleSetFlag": false - } - }, - "slaType": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigSlaType" - }, - "exampleSetFlag": true, - "enum": [ - "FAULT_MANAGEMENT", - "PROBLEM_MANAGEMENT", - "SERVICE_REQUEST", - "WORK_TICKET" - ] - }, - "solveTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DELETE", - "DISABLE", - "ENABLE" - ] - }, - "taskType": { - "type": "string", - "extensions": { - "$hint$className": "TaskType" - }, - "exampleSetFlag": true, - "enum": [ - "TASK_MANUAL", - "TASK_SERVICE" - ] - } - }, - "exampleSetFlag": false - }, - "SmSlaConfigSRAO": { - "title": "SmSlaConfigSRAO", - "type": "object", - "properties": { - "slaId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "srBizCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SmSlaConfigSRCreateReq": { - "title": "SmSlaConfigSRCreateReq", - "type": "object", - "properties": { - "slaId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "srBizCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SmSlaConfigSRQueryReq": { - "title": "SmSlaConfigSRQueryReq", - "type": "object", - "properties": { - "srBizCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SmSlaConfigSearchReq": { - "title": "SmSlaConfigSearchReq", - "type": "object", - "properties": { - "conditionList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Condition", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "notify": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigNotify" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "ENABLE" - ] - }, - "notifyType": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigNotifyType" - }, - "exampleSetFlag": true, - "enum": [ - "DING_TALK", - "EMAIL", - "INNER_MAIL", - "WECHAT" - ] - }, - "nullPriority": { - "type": "boolean", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigPriority" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MIDDLE", - "URGENT" - ] - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "slaType": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigSlaType" - }, - "exampleSetFlag": true, - "enum": [ - "FAULT_MANAGEMENT", - "PROBLEM_MANAGEMENT", - "SERVICE_REQUEST", - "WORK_TICKET" - ] - }, - "status": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "DELETE", - "DISABLE", - "ENABLE" - ] - } - }, - "taskType": { - "type": "string", - "extensions": { - "$hint$className": "TaskType" - }, - "exampleSetFlag": true, - "enum": [ - "TASK_MANUAL", - "TASK_SERVICE" - ] - } - }, - "exampleSetFlag": false - }, - "SmSlaConfigUpdateReq": { - "title": "SmSlaConfigUpdateReq", - "type": "object", - "properties": { - "bizCategory": { - "type": "string", - "exampleSetFlag": true - }, - "conditionList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Condition", - "exampleSetFlag": false - } - }, - "departmentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "filterDepartment": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "notify": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigNotify" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "ENABLE" - ] - }, - "notifyResponseTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "notifySolveTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "notifyType": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigNotifyType" - }, - "exampleSetFlag": true, - "enum": [ - "DING_TALK", - "EMAIL", - "INNER_MAIL", - "WECHAT" - ] - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigPriority" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MIDDLE", - "URGENT" - ] - }, - "responseTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "slaSupportTimeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SmSlaSupportTimeUpdateReq", - "exampleSetFlag": false - } - }, - "slaType": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigSlaType" - }, - "exampleSetFlag": true, - "enum": [ - "FAULT_MANAGEMENT", - "PROBLEM_MANAGEMENT", - "SERVICE_REQUEST", - "WORK_TICKET" - ] - }, - "solveTime": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaConfigStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DELETE", - "DISABLE", - "ENABLE" - ] - }, - "taskType": { - "type": "string", - "extensions": { - "$hint$className": "TaskType" - }, - "exampleSetFlag": true, - "enum": [ - "TASK_MANUAL", - "TASK_SERVICE" - ] - } - }, - "exampleSetFlag": false - }, - "SmSlaResponseResolveTimeVO": { - "title": "SmSlaResponseResolveTimeVO", - "type": "object", - "properties": { - "resolveLeaveTime": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "resolvePassTime": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "resolveSetTime": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "resolveSlaStatus": { - "type": "string", - "exampleSetFlag": true - }, - "resolveSlaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "resolveSlaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "respLeaveTime": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "respPassTime": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "respSetTime": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "responseSlaStatus": { - "type": "string", - "exampleSetFlag": true - }, - "responseSlaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "responseSlaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SmSlaSupportTimeAO": { - "title": "SmSlaSupportTimeAO", - "type": "object", - "properties": { - "begin": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "day": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaSupportTimeDay" - }, - "exampleSetFlag": true, - "enum": [ - "FRI", - "MON", - "SAT", - "SUN", - "THU", - "TUE", - "WED" - ] - }, - "end": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int64", - "exampleSetFlag": true - }, - "rest": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaSupportTimeRest" - }, - "exampleSetFlag": true, - "enum": [ - "NO_REST", - "REST" - ] - }, - "slaId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SmSlaSupportTimeCreateReq": { - "title": "SmSlaSupportTimeCreateReq", - "type": "object", - "properties": { - "begin": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "day": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaSupportTimeDay" - }, - "exampleSetFlag": true, - "enum": [ - "FRI", - "MON", - "SAT", - "SUN", - "THU", - "TUE", - "WED" - ] - }, - "end": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rest": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaSupportTimeRest" - }, - "exampleSetFlag": true, - "enum": [ - "NO_REST", - "REST" - ] - } - }, - "exampleSetFlag": false - }, - "SmSlaSupportTimeUpdateReq": { - "title": "SmSlaSupportTimeUpdateReq", - "type": "object", - "properties": { - "begin": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "day": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaSupportTimeDay" - }, - "exampleSetFlag": true, - "enum": [ - "FRI", - "MON", - "SAT", - "SUN", - "THU", - "TUE", - "WED" - ] - }, - "end": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "rest": { - "type": "string", - "extensions": { - "$hint$className": "SmSlaSupportTimeRest" - }, - "exampleSetFlag": true, - "enum": [ - "NO_REST", - "REST" - ] - } - }, - "exampleSetFlag": false - }, - "SubServiceCatalogDetailVO": { - "title": "SubServiceCatalogDetailVO", - "type": "object", - "properties": { - "applyAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "applyBy": { - "type": "string", - "exampleSetFlag": true - }, - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "bizProcessId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bpmCode": { - "type": "string", - "exampleSetFlag": true - }, - "bpmId": { - "type": "string", - "exampleSetFlag": true - }, - "categoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "categoryTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "code": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "curUserRole": { - "type": "string", - "extensions": { - "$hint$className": "RoleType" - }, - "exampleSetFlag": true, - "enum": [ - "MEMBER", - "OWNER" - ] - }, - "delivery": { - "type": "string", - "exampleSetFlag": true - }, - "deliveryMode": { - "type": "string", - "extensions": { - "$hint$className": "DeliveryModeType" - }, - "exampleSetFlag": true, - "enum": [ - "FORM", - "MANUAL" - ] - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "imgFile": { - "$ref": "#/components/schemas/ItsmFileAO", - "exampleSetFlag": true - }, - "imgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isHot": { - "type": "string", - "extensions": { - "$hint$className": "CatalogIsHotType" - }, - "exampleSetFlag": true, - "enum": [ - "HOT", - "NOT_HOT" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "openProductNames": { - "type": "string", - "exampleSetFlag": true - }, - "openType": { - "type": "string", - "extensions": { - "$hint$className": "OpenType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "PART" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "priceDescription": { - "type": "string", - "exampleSetFlag": true - }, - "priceDescriptionCn": { - "type": "string", - "exampleSetFlag": true - }, - "privileges": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServicePrivilegeAO", - "exampleSetFlag": false - } - }, - "serviceDeliveryTime": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeliveryTimeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDescZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "serviceProvider": { - "type": "string", - "exampleSetFlag": true - }, - "serviceSupplierName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceType": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeCn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceTypeTreeIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "CatalogStatusType" - }, - "exampleSetFlag": true, - "enum": [ - "APPROVAL_REJECTION", - "APPROVED", - "DRAFT", - "OFFLINE", - "WAITING_FOR_APPROVE" - ] - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "subServiceCatalogIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "subServiceCatalogs": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/ServiceCatalogAO", - "exampleSetFlag": false - } - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "summaryCn": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "VisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "USER" - ] - }, - "xbuilderPageCode": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderPageGroupCode": { - "type": "string", - "exampleSetFlag": true - }, - "xbuilderProjectCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SubTaskAO": { - "title": "SubTaskAO", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "attachment": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SubtaskFileInfo", - "exampleSetFlag": false - } - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incNo": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rejectReason": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "remarksAttachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SubtaskFileInfo", - "exampleSetFlag": false - } - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "statusEn": { - "type": "string", - "exampleSetFlag": true - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "taskNo": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SubTaskPageAO": { - "title": "SubTaskPageAO", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "attachment": { - "type": "string", - "exampleSetFlag": true - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "changeAssigneeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "changeId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "changeNo": { - "type": "string", - "exampleSetFlag": true - }, - "changePlanEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "changePlanStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "changeStatus": { - "type": "string", - "extensions": { - "$hint$className": "ChangeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - }, - "changeSubmitter": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rejectReason": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "statusEn": { - "type": "string", - "exampleSetFlag": true - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "taskId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "taskNo": { - "type": "string", - "exampleSetFlag": true - }, - "ticketId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SubTaskSearchReq": { - "title": "SubTaskSearchReq", - "type": "object", - "properties": { - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "endCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "endUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planEndTimeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planEndTimeStart": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "startCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startUpdatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "statusList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "taskNo": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SubtaskCreateReq": { - "title": "SubtaskCreateReq", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "attachment": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SubtaskFileInfo", - "exampleSetFlag": false - } - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "incNo": { - "type": "string", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rejectReason": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SubtaskFileInfo": { - "title": "SubtaskFileInfo", - "type": "object", - "properties": { - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileUrl": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "s3Url": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SubtaskUpdateReq": { - "title": "SubtaskUpdateReq", - "type": "object", - "properties": { - "assignGroup": { - "type": "string", - "exampleSetFlag": true - }, - "assignId": { - "type": "string", - "exampleSetFlag": true - }, - "attachment": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SubtaskFileInfo", - "exampleSetFlag": false - } - }, - "cancelReason": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "pbNum": { - "type": "string", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "rejectReason": { - "type": "string", - "exampleSetFlag": true - }, - "remarks": { - "type": "string", - "exampleSetFlag": true - }, - "remarksAttachment": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/SubtaskFileInfo", - "exampleSetFlag": false - } - }, - "status": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SysConfigAO": { - "title": "SysConfigAO", - "type": "object", - "properties": { - "confKey": { - "type": "string", - "exampleSetFlag": true - }, - "confValue": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SysConfigCreateReq": { - "title": "SysConfigCreateReq", - "type": "object", - "properties": { - "confKey": { - "type": "string", - "exampleSetFlag": true - }, - "confValue": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SysConfigSearchReq": { - "title": "SysConfigSearchReq", - "type": "object", - "properties": { - "confKey": { - "type": "string", - "exampleSetFlag": true - }, - "confValue": { - "type": "string", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SysConfigUpdateReq": { - "title": "SysConfigUpdateReq", - "type": "object", - "properties": { - "accessible": { - "$ref": "#/components/schemas/Method", - "exampleSetFlag": true - }, - "confKey": { - "type": "string", - "exampleSetFlag": true - }, - "confValue": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SysUserLogAO": { - "title": "SysUserLogAO", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "logInfo": { - "type": "string", - "exampleSetFlag": true - }, - "logIp": { - "type": "string", - "exampleSetFlag": true - }, - "logMid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "logModule": { - "type": "string", - "extensions": { - "$hint$className": "SysUserLogModule" - }, - "exampleSetFlag": true, - "enum": [ - "AUTOMATION", - "CHANGE", - "COMMENT", - "EMAIL_PARSE", - "FEEDBACK", - "KNOWLEDGE_GRAPH", - "TEMPLATE" - ] - }, - "logStatus": { - "type": "string", - "extensions": { - "$hint$className": "SysUserLogStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "SUCCESS" - ] - }, - "logTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "logType": { - "type": "string", - "extensions": { - "$hint$className": "SysUserLogOperateType" - }, - "exampleSetFlag": true, - "enum": [ - "ADD_AUTOMATION", - "ADD_COMMENT", - "ADD_COORDINATION", - "APPROVAL", - "CANCEL", - "CLOSE", - "COPY", - "CREATE", - "DELETE", - "DEL_AUTOMATION", - "DEL_COORDINATION", - "DOWNLOAD", - "EXECUTE_AUTOMATION", - "SCHEDULE_TO_IMPLEMENT", - "SEND_TO_APPROVE", - "SMS", - "SMS_CHANGE_START", - "UPDATE", - "UPDATE_APPROVAL_RESULT", - "UPDATE_CI", - "UPDATE_COORDINATION", - "UPDATE_PLAN", - "UPLOAD" - ] - }, - "loginType": { - "type": "string", - "extensions": { - "$hint$className": "SysUserLogLoginType" - }, - "exampleSetFlag": true, - "enum": [ - "LOCAL_JOB", - "SERVICE_API", - "SYSTEM_LOGIN" - ] - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "SysUserLogSearchReq": { - "title": "SysUserLogSearchReq", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "logInfo": { - "type": "string", - "exampleSetFlag": true - }, - "logIp": { - "type": "string", - "exampleSetFlag": true - }, - "logMid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "logModule": { - "type": "string", - "extensions": { - "$hint$className": "SysUserLogModule" - }, - "exampleSetFlag": true, - "enum": [ - "AUTOMATION", - "CHANGE", - "COMMENT", - "EMAIL_PARSE", - "FEEDBACK", - "KNOWLEDGE_GRAPH", - "TEMPLATE" - ] - }, - "logStatus": { - "type": "string", - "extensions": { - "$hint$className": "SysUserLogStatus" - }, - "exampleSetFlag": true, - "enum": [ - "FAILED", - "SUCCESS" - ] - }, - "logTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "logType": { - "type": "string", - "extensions": { - "$hint$className": "SysUserLogOperateType" - }, - "exampleSetFlag": true, - "enum": [ - "ADD_AUTOMATION", - "ADD_COMMENT", - "ADD_COORDINATION", - "APPROVAL", - "CANCEL", - "CLOSE", - "COPY", - "CREATE", - "DELETE", - "DEL_AUTOMATION", - "DEL_COORDINATION", - "DOWNLOAD", - "EXECUTE_AUTOMATION", - "SCHEDULE_TO_IMPLEMENT", - "SEND_TO_APPROVE", - "SMS", - "SMS_CHANGE_START", - "UPDATE", - "UPDATE_APPROVAL_RESULT", - "UPDATE_CI", - "UPDATE_COORDINATION", - "UPDATE_PLAN", - "UPLOAD" - ] - }, - "loginType": { - "type": "string", - "extensions": { - "$hint$className": "SysUserLogLoginType" - }, - "exampleSetFlag": true, - "enum": [ - "LOCAL_JOB", - "SERVICE_API", - "SYSTEM_LOGIN" - ] - }, - "startLogTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TaskCompleteReq": { - "title": "TaskCompleteReq", - "type": "object", - "properties": { - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "resultComment": { - "type": "string", - "exampleSetFlag": true - }, - "resultType": { - "type": "string", - "exampleSetFlag": true - }, - "taskId": { - "type": "string", - "exampleSetFlag": true - }, - "variables": { - "type": "object", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TaskEventVO": { - "title": "TaskEventVO", - "type": "object", - "properties": { - "eventType": { - "type": "string", - "exampleSetFlag": true, - "enum": [ - "ASSIGNMENT", - "COMPLETE", - "CREATE", - "TIMEOUT" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "taskId": { - "type": "string", - "exampleSetFlag": true - }, - "taskName": { - "type": "string", - "exampleSetFlag": true - }, - "taskResult": { - "$ref": "#/components/schemas/BpmTaskResultVO", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TemplateAO": { - "title": "TemplateAO", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "descriptionZh": { - "type": "string", - "exampleSetFlag": true - }, - "hasImage": { - "type": "boolean", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "insightPageCode": { - "type": "string", - "exampleSetFlag": true - }, - "insightPageGroupCode": { - "type": "string", - "exampleSetFlag": true - }, - "insightPageGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "insightPageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "insightProjectCode": { - "type": "string", - "exampleSetFlag": true - }, - "insightProjectId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isDefault": { - "type": "boolean", - "exampleSetFlag": true - }, - "module": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameZh": { - "type": "string", - "exampleSetFlag": true - }, - "pages": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TemplatePageAO", - "exampleSetFlag": false - } - }, - "privilegeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TemplatePrivilegeAO", - "exampleSetFlag": false - } - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ItsmTemplateStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "DRAFT", - "ENABLE", - "SUBMITTED" - ] - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "TemplateVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "ORG", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "TemplateCreateReq": { - "title": "TemplateCreateReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "descriptionZh": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "module": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameZh": { - "type": "string", - "exampleSetFlag": true - }, - "portalTemplateInstance": { - "type": "boolean", - "exampleSetFlag": true - }, - "privilegeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TemplatePrivilegeReq", - "exampleSetFlag": false - } - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "TemplateVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "ORG", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "TemplatePageAO": { - "title": "TemplatePageAO", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "img": { - "type": "string", - "exampleSetFlag": true - }, - "insightPageCode": { - "type": "string", - "exampleSetFlag": true - }, - "insightPageGroupCode": { - "type": "string", - "exampleSetFlag": true - }, - "insightPageGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "insightPageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "pageName": { - "type": "string", - "exampleSetFlag": true - }, - "templateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "PageType" - }, - "exampleSetFlag": true, - "enum": [ - "CREATE", - "DETAIL", - "EDIT" - ] - } - }, - "exampleSetFlag": false - }, - "TemplatePageGroupCopyReq": { - "title": "TemplatePageGroupCopyReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "pageId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pageName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TemplatePageGroupCreateReq": { - "title": "TemplatePageGroupCreateReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "pageName": { - "type": "string", - "exampleSetFlag": true - }, - "templateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TemplatePageGroupSearchReq": { - "title": "TemplatePageGroupSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "templateId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TemplatePageGroupUpdateReq": { - "title": "TemplatePageGroupUpdateReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "pageName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TemplatePrivilegeAO": { - "title": "TemplatePrivilegeAO", - "type": "object", - "properties": { - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "groupName": { - "type": "string", - "exampleSetFlag": true - }, - "itsmOrgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "itsmOrgIdTree": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "orgName": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TemplatePrivilegeReq": { - "title": "TemplatePrivilegeReq", - "type": "object", - "properties": { - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "itsmOrgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TemplateSearchReq": { - "title": "TemplateSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "isDefault": { - "type": "boolean", - "exampleSetFlag": true - }, - "module": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ItsmTemplateStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "DRAFT", - "ENABLE", - "SUBMITTED" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TemplateStatusReq": { - "title": "TemplateStatusReq", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "ItsmTemplateStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "DRAFT", - "ENABLE", - "SUBMITTED" - ] - } - }, - "exampleSetFlag": false - }, - "TemplateUpdateReq": { - "title": "TemplateUpdateReq", - "type": "object", - "properties": { - "description": { - "type": "string", - "exampleSetFlag": true - }, - "descriptionZh": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "isDefault": { - "type": "boolean", - "exampleSetFlag": true - }, - "module": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "nameZh": { - "type": "string", - "exampleSetFlag": true - }, - "portalTemplateInstance": { - "type": "boolean", - "exampleSetFlag": true - }, - "privilegeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TemplatePrivilegeReq", - "exampleSetFlag": false - } - }, - "visibility": { - "type": "string", - "extensions": { - "$hint$className": "TemplateVisibilityType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "GROUP", - "ORG", - "USER" - ] - } - }, - "exampleSetFlag": false - }, - "TenantDisplayDTO": { - "title": "TenantDisplayDTO", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "tenantId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "tenantName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TenantDisplaySearchForm": { - "title": "TenantDisplaySearchForm", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "OrgStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "NORMAL" - ] - }, - "tenantName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TickCommentCreateVo": { - "title": "TickCommentCreateVo", - "type": "object", - "properties": { - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "inid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketActivityForm": { - "title": "TicketActivityForm", - "required": [ - "inid", - "requestNo" - ], - "type": "object", - "properties": { - "inid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketActivityVO": { - "title": "TicketActivityVO", - "type": "object", - "properties": { - "attachments": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TicketAttachmentVO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "info": { - "type": "string", - "exampleSetFlag": true - }, - "infoZh": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "TicketActivityType" - }, - "exampleSetFlag": true, - "enum": [ - "ACTIVITY", - "ALERT", - "COMMENT" - ] - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketApprovalReq": { - "title": "TicketApprovalReq", - "type": "object", - "properties": { - "action": { - "type": "string", - "description": "NEXT下一页 PRE上一页", - "extensions": { - "$hint$className": "PageActionType" - }, - "exampleSetFlag": true, - "enum": [ - "NEXT", - "PRE" - ] - }, - "approvalStatus": { - "type": "string", - "extensions": { - "$hint$className": "ApprovalStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "MY_APPROVED", - "MY_SUBMITED", - "PENDING_TO_ME" - ] - }, - "assignGroupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "endTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "hideTime": { - "type": "string", - "description": "隐藏时间参数 下一页时,传列表最后一条记录的 create or update time, 上一页时传列表第一条create or update time", - "format": "date-time", - "exampleSetFlag": true - }, - "isMobile": { - "type": "boolean", - "exampleSetFlag": true - }, - "isTrueScaleAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "description": "模糊查询条件", - "exampleSetFlag": true - }, - "query": { - "type": "string", - "exampleSetFlag": true - }, - "queryType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "secondType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "sortBy": { - "type": "string", - "description": "排序字段 创建时间CREATE_TIME 更新时间 UPDATE_TIME", - "extensions": { - "$hint$className": "SortByType" - }, - "exampleSetFlag": true, - "enum": [ - "CREATE_TIME", - "UPDATE_TIME" - ] - }, - "startTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTimeBegin": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "startTimeEnd": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "totalElements": { - "type": "integer", - "description": "总数 PRE上一页时必传", - "format": "int64", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "description": "单据类型", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - }, - "exampleSetFlag": false - }, - "TicketAttachmentCreateForm": { - "title": "TicketAttachmentCreateForm", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fileType": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "s3Key": { - "type": "string", - "exampleSetFlag": true - }, - "s3Url": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketAttachmentVO": { - "title": "TicketAttachmentVO", - "type": "object", - "properties": { - "commentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "fileName": { - "type": "string", - "exampleSetFlag": true - }, - "fileSize": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "fileType": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "$ref": "#/components/schemas/JSON", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "s3Key": { - "type": "string", - "exampleSetFlag": true - }, - "s3Url": { - "type": "string", - "exampleSetFlag": true - }, - "ticketId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketCollectForm": { - "title": "TicketCollectForm", - "required": [ - "ticketId", - "ticketType" - ], - "type": "object", - "properties": { - "ticketId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - }, - "exampleSetFlag": false - }, - "TicketCommentCreateForm": { - "title": "TicketCommentCreateForm", - "type": "object", - "properties": { - "attachments": { - "type": "array", - "description": "附件", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/TicketAttachmentCreateForm", - "exampleSetFlag": false - } - }, - "comment": { - "type": "string", - "description": "评论", - "exampleSetFlag": true - }, - "inid": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ticketId": { - "type": "integer", - "description": "单据的ID", - "format": "int32", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "description": "单据类型", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketCommentVO": { - "title": "TicketCommentVO", - "type": "object", - "properties": { - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ticketId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketCompanyCountSearchForm": { - "title": "TicketCompanyCountSearchForm", - "type": "object", - "properties": { - "isTrueScaleAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "types": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - } - }, - "exampleSetFlag": false - }, - "TicketCountSearchForm": { - "title": "TicketCountSearchForm", - "type": "object", - "properties": { - "endCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "isAll": { - "type": "boolean", - "exampleSetFlag": true - }, - "isMobile": { - "type": "boolean", - "exampleSetFlag": true - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "startCreatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "ticketType": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "ticketTypes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - }, - "types": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - } - } - }, - "exampleSetFlag": false - }, - "TicketCountVO": { - "title": "TicketCountVO", - "type": "object", - "properties": { - "count": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "pageQueryType": { - "type": "string", - "extensions": { - "$hint$className": "PageQueryType" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "ASSIGNED", - "CLOSED", - "INC_CLOSED", - "INC_IN_PROGRESS", - "INC_MY_CLOSED", - "INC_RESOLVED", - "IN_DEAL", - "IN_PROGRESS", - "MY", - "MY_CLOSED", - "MY_TEAMS", - "MY_TICKET", - "OPEN", - "OVERDUE", - "OVERDUE_ING", - "PENDING_TO_ME", - "POC_OPEN", - "PORTAL_CLOSED", - "PORTAL_IN_PROGRESS", - "PORTAL_IN_PROGRESS_EXCLUDE_RESOLVED", - "PORTAL_MY_CANCELED", - "PORTAL_MY_COLLECT", - "PORTAL_RESOLVED", - "RESOLVED", - "SERVICE_DESK_MY_DONE", - "SERVICE_DESK_MY_IN_PROGRESS", - "SERVICE_DESK_MY_PARTAKE", - "SERVICE_DESK_MY_UNASSIGNED", - "SLA", - "SUBMIT", - "SUSPENDED", - "TICKET_CLOSED", - "TICKET_IN_PROGRESS", - "TICKET_MY_COLLECT", - "TRUESCALE_ALL_STATUS", - "TRUESCALE_CANCELED", - "TRUESCALE_CLOSED", - "TRUESCALE_IN_PROGRESS", - "TRUESCALE_MY_COLLECT", - "UNASSIGNED", - "UPGRADE", - "WOK" - ] - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - } - }, - "exampleSetFlag": false - }, - "TicketDataExistAO": { - "title": "TicketDataExistAO", - "type": "object", - "properties": { - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "checkKey": { - "type": "string", - "exampleSetFlag": true - }, - "checkValue": { - "type": "object", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketDataExistCheckReq": { - "title": "TicketDataExistCheckReq", - "type": "object", - "properties": { - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "checkJsonData": { - "type": "object", - "exampleSetFlag": true - }, - "checkKey": { - "type": "string", - "exampleSetFlag": true - }, - "checkValue": { - "type": "object", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketDetailExportSearchForm": { - "title": "TicketDetailExportSearchForm", - "type": "object", - "properties": { - "detailMap": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketEvaluateAO": { - "title": "TicketEvaluateAO", - "type": "object", - "properties": { - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "dealBy": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "satisfaction": { - "type": "string", - "extensions": { - "$hint$className": "SatisfactionType" - }, - "exampleSetFlag": true, - "enum": [ - "BAD", - "GOOD", - "NORMAL", - "TERRIBLE", - "WONDERFUL" - ] - }, - "satisfactionZh": { - "type": "string", - "exampleSetFlag": true - }, - "sourceSystem": { - "type": "string", - "extensions": { - "$hint$className": "SourceSystemType" - }, - "exampleSetFlag": true, - "enum": [ - "INC", - "SR", - "TASK" - ] - }, - "sourceSystemZh": { - "type": "string", - "exampleSetFlag": true - }, - "ticketId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - }, - "userId": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketEvaluateCreateForm": { - "title": "TicketEvaluateCreateForm", - "required": [ - "satisfaction", - "sourceSystem", - "ticketNo" - ], - "type": "object", - "properties": { - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "satisfaction": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "sourceSystem": { - "type": "string", - "extensions": { - "$hint$className": "SourceSystemType" - }, - "exampleSetFlag": true, - "enum": [ - "INC", - "SR", - "TASK" - ] - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketEvaluateCreateReq": { - "title": "TicketEvaluateCreateReq", - "type": "object", - "properties": { - "comment": { - "type": "string", - "exampleSetFlag": true - }, - "satisfaction": { - "type": "string", - "extensions": { - "$hint$className": "SatisfactionType" - }, - "exampleSetFlag": true, - "enum": [ - "BAD", - "GOOD", - "NORMAL", - "TERRIBLE", - "WONDERFUL" - ] - }, - "sourceSystem": { - "type": "string", - "extensions": { - "$hint$className": "SourceSystemType" - }, - "exampleSetFlag": true, - "enum": [ - "INC", - "SR", - "TASK" - ] - }, - "ticketNo": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketEvaluateSearchReq": { - "title": "TicketEvaluateSearchReq", - "type": "object", - "properties": { - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "satisfaction": { - "type": "string", - "extensions": { - "$hint$className": "SatisfactionType" - }, - "exampleSetFlag": true, - "enum": [ - "BAD", - "GOOD", - "NORMAL", - "TERRIBLE", - "WONDERFUL" - ] - }, - "sourceSystem": { - "type": "string", - "extensions": { - "$hint$className": "SourceSystemType" - }, - "exampleSetFlag": true, - "enum": [ - "INC", - "SR", - "TASK" - ] - } - }, - "exampleSetFlag": false - }, - "TicketProcessVO": { - "title": "TicketProcessVO", - "type": "object", - "properties": { - "status": { - "type": "string", - "exampleSetFlag": true - }, - "statusZh": { - "type": "string", - "exampleSetFlag": true - }, - "time": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "userCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketRobotReq": { - "title": "TicketRobotReq", - "type": "object", - "properties": { - "q": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TicketVO": { - "title": "TicketVO", - "type": "object", - "properties": { - "approvalOpinion": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeGroup": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "assigneeGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeTo": { - "type": "string", - "exampleSetFlag": true - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "attachmentList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAttachmentAO", - "exampleSetFlag": false - } - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "bizCode": { - "type": "string", - "exampleSetFlag": true - }, - "catalogId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "categoryName": { - "type": "string", - "exampleSetFlag": true - }, - "categoryNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "changeAssigneeList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "changePlanEndDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "changePlanStartDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "changeStatus": { - "type": "string", - "extensions": { - "$hint$className": "ChangeStatus" - }, - "exampleSetFlag": true, - "enum": [ - "CANCELLED", - "CLOSED", - "IMPLEMENTING", - "PLANNING", - "REJECTED", - "SCHEDULED_FOR_IMPLEMENT", - "WAITING_FOR_APPROVAL" - ] - }, - "closedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "customerCompanyName": { - "type": "string", - "exampleSetFlag": true - }, - "description": { - "type": "string", - "exampleSetFlag": true - }, - "formJson": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "impact": { - "type": "string", - "extensions": { - "$hint$className": "ImpactType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "isEvaluate": { - "type": "boolean", - "exampleSetFlag": true - }, - "isFavourite": { - "type": "boolean", - "exampleSetFlag": true - }, - "linkedUrl": { - "type": "string", - "exampleSetFlag": true - }, - "no": { - "type": "string", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentNo": { - "type": "string", - "exampleSetFlag": true - }, - "planEndTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "planStartTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "exampleSetFlag": true - }, - "priorityCn": { - "type": "string", - "exampleSetFlag": true - }, - "relateRequestNo": { - "type": "string", - "exampleSetFlag": true - }, - "reporterId": { - "type": "string", - "exampleSetFlag": true - }, - "requestNo": { - "type": "string", - "exampleSetFlag": true - }, - "resolveSlaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "resolveSlaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "resolveSlaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "resolvedTime": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "responseSlaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "responseSlaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "responseSlaStatusEn": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDesc": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskGroup": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "serviceDeskGroupName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceDeskOwner": { - "type": "string", - "exampleSetFlag": true - }, - "serviceName": { - "type": "string", - "exampleSetFlag": true - }, - "serviceNameZh": { - "type": "string", - "exampleSetFlag": true - }, - "slaStatus": { - "type": "string", - "extensions": { - "$hint$className": "SlaStatus" - }, - "exampleSetFlag": true, - "enum": [ - "ALL", - "NEARLY_OVERDUE", - "NONE", - "OPEN", - "OVERDUE" - ] - }, - "slaStatusCn": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "exampleSetFlag": true - }, - "statusCn": { - "type": "string", - "exampleSetFlag": true - }, - "submitter": { - "type": "string", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "treeBizCategoryIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "TicketType" - }, - "exampleSetFlag": true, - "enum": [ - "CR", - "CR_CATALOG", - "CR_SUBTASK", - "INC", - "INC_SUBTASK", - "KM", - "PB", - "PB_SUBTASK", - "PORTAL", - "PORTAL_TEMPLATE", - "SR", - "SR_CATALOG", - "SUB_TASK", - "TASK", - "TASK_SUBTASK", - "UNKNOWN" - ] - }, - "typeCn": { - "type": "string", - "exampleSetFlag": true - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "urgency": { - "type": "string", - "extensions": { - "$hint$className": "UrgencyType" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "vip": { - "type": "string", - "extensions": { - "$hint$className": "YesOrNoV2Type" - }, - "exampleSetFlag": true, - "enum": [ - "NO", - "YES" - ] - } - }, - "exampleSetFlag": false - }, - "TreeSearchForm": { - "title": "TreeSearchForm", - "type": "object", - "properties": { - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TreeSearchReq": { - "title": "TreeSearchReq", - "type": "object", - "properties": { - "nodeNotNeedChild": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "parentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "Type": { - "title": "Type", - "type": "object", - "properties": { - "typeName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TypeInfosVO": { - "title": "TypeInfosVO", - "type": "object", - "properties": { - "showColumns": { - "type": "object", - "additionalProperties": { - "type": "array", - "exampleSetFlag": false, - "items": { - "$ref": "#/components/schemas/QueryShow", - "exampleSetFlag": false - } - }, - "exampleSetFlag": true - }, - "types": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/CiTypeAO", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "TypeVariable«Method»": { - "title": "TypeVariable«Method»", - "type": "object", - "properties": { - "annotatedBounds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": false - } - }, - "annotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "bounds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Type", - "exampleSetFlag": false - } - }, - "declaredAnnotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "genericDeclaration": { - "$ref": "#/components/schemas/MethodRes", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "typeName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "TypeVariable«object»": { - "title": "TypeVariable«object»", - "type": "object", - "properties": { - "annotatedBounds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/AnnotatedType", - "exampleSetFlag": false - } - }, - "annotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "bounds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Type", - "exampleSetFlag": false - } - }, - "declaredAnnotations": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/Annotation", - "exampleSetFlag": false - } - }, - "genericDeclaration": { - "type": "object", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "typeName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "UpgradeTicket": { - "title": "UpgradeTicket", - "type": "object", - "properties": { - "assigneeGroups": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/IncidentAssigneeGroupReq", - "exampleSetFlag": false - } - }, - "assigneeUser": { - "type": "string", - "exampleSetFlag": true - }, - "bizCategoryId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "UserApiVO": { - "title": "UserApiVO", - "type": "object", - "properties": { - "additionalProperties": { - "type": "string", - "exampleSetFlag": true - }, - "avatar": { - "type": "string", - "exampleSetFlag": true - }, - "code": { - "type": "string", - "exampleSetFlag": true - }, - "email": { - "type": "string", - "exampleSetFlag": true - }, - "gender": { - "type": "string", - "extensions": { - "$hint$className": "Gender" - }, - "exampleSetFlag": true, - "enum": [ - "FEMALE", - "MALE", - "UNKNOWN" - ] - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "orgName": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "UserStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "DISMISS", - "INIT", - "NORMAL" - ] - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "UserType" - }, - "exampleSetFlag": true, - "enum": [ - "HUMAN", - "ROBOT" - ] - } - }, - "exampleSetFlag": false - }, - "UserGroupAO": { - "title": "UserGroupAO", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "UserGroupApiVO": { - "title": "UserGroupApiVO", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "UserGroupVO": { - "title": "UserGroupVO", - "type": "object", - "properties": { - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "UserInfoForm": { - "title": "UserInfoForm", - "type": "object", - "properties": { - "authType": { - "type": "string", - "extensions": { - "$hint$className": "AuthType" - }, - "exampleSetFlag": true, - "enum": [ - "AADB2C", - "LDAP", - "LOCAL", - "NOOP", - "OAUTH", - "SAML" - ] - }, - "code": { - "type": "string", - "exampleSetFlag": true - }, - "departmentId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "departmentIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "email": { - "type": "string", - "exampleSetFlag": true - }, - "gender": { - "type": "string", - "extensions": { - "$hint$className": "Gender" - }, - "exampleSetFlag": true, - "enum": [ - "FEMALE", - "MALE", - "UNKNOWN" - ] - }, - "groupId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "lastLoginTime": { - "type": "string", - "exampleSetFlag": true - }, - "loginName": { - "type": "string", - "exampleSetFlag": true - }, - "mobile": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "realName": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "UserStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "DISMISS", - "INIT", - "NORMAL" - ] - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "UserType" - }, - "exampleSetFlag": true, - "enum": [ - "HUMAN", - "ROBOT" - ] - } - }, - "exampleSetFlag": false - }, - "UserInfoVO": { - "title": "UserInfoVO", - "type": "object", - "properties": { - "additionalProperties": { - "type": "object", - "additionalProperties": { - "type": "object", - "exampleSetFlag": false - }, - "exampleSetFlag": true - }, - "authType": { - "type": "string", - "extensions": { - "$hint$className": "AuthType" - }, - "exampleSetFlag": true, - "enum": [ - "AADB2C", - "LDAP", - "LOCAL", - "NOOP", - "OAUTH", - "SAML" - ] - }, - "code": { - "type": "string", - "exampleSetFlag": true - }, - "email": { - "type": "string", - "exampleSetFlag": true - }, - "foreignDepartment": { - "type": "string", - "exampleSetFlag": true - }, - "gender": { - "type": "string", - "extensions": { - "$hint$className": "Gender" - }, - "exampleSetFlag": true, - "enum": [ - "FEMALE", - "MALE", - "UNKNOWN" - ] - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "jobNumber": { - "type": "string", - "exampleSetFlag": true - }, - "lastLoginTime": { - "type": "string", - "exampleSetFlag": true - }, - "loginName": { - "type": "string", - "exampleSetFlag": true - }, - "mfaStatus": { - "type": "string", - "exampleSetFlag": true - }, - "mobile": { - "type": "string", - "exampleSetFlag": true - }, - "noticeEmail": { - "type": "string", - "exampleSetFlag": true - }, - "noticeMobile": { - "type": "string", - "exampleSetFlag": true - }, - "orgCode": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "string", - "exampleSetFlag": true - }, - "realName": { - "type": "string", - "exampleSetFlag": true - }, - "remark": { - "type": "string", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "UserStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "DISMISS", - "INIT", - "NORMAL" - ] - }, - "userType": { - "type": "string", - "exampleSetFlag": true - }, - "username": { - "type": "string", - "exampleSetFlag": true - }, - "workName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "UserIsVip": { - "title": "UserIsVip", - "type": "object", - "properties": { - "isVip": { - "type": "boolean", - "exampleSetFlag": true - }, - "itCode": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "UserIsVipVO": { - "title": "UserIsVipVO", - "type": "object", - "properties": { - "userIsVipList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/UserIsVip", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "UserQueryReq": { - "title": "UserQueryReq", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "codes": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "email": { - "type": "string", - "exampleSetFlag": true - }, - "excludedIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "groupIds": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "querySubDep": { - "type": "boolean", - "exampleSetFlag": true - }, - "realName": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "UserType" - }, - "exampleSetFlag": true, - "enum": [ - "HUMAN", - "ROBOT" - ] - } - }, - "exampleSetFlag": false - }, - "UserSearchExtForm": { - "title": "UserSearchExtForm", - "type": "object", - "properties": { - "code": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "UserSearchForm": { - "title": "UserSearchForm", - "type": "object", - "properties": { - "userApiVOList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/UserInfoForm", - "exampleSetFlag": false - } - } - }, - "exampleSetFlag": false - }, - "UserSimpleDisplayApiVO": { - "title": "UserSimpleDisplayApiVO", - "type": "object", - "properties": { - "avatar": { - "type": "string", - "exampleSetFlag": true - }, - "code": { - "type": "string", - "exampleSetFlag": true - }, - "email": { - "type": "string", - "exampleSetFlag": true - }, - "gender": { - "type": "string", - "extensions": { - "$hint$className": "Gender" - }, - "exampleSetFlag": true, - "enum": [ - "FEMALE", - "MALE", - "UNKNOWN" - ] - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "loginName": { - "type": "string", - "exampleSetFlag": true - }, - "name": { - "type": "string", - "exampleSetFlag": true - }, - "orgId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "UserStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DISABLE", - "DISMISS", - "INIT", - "NORMAL" - ] - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "UserType" - }, - "exampleSetFlag": true, - "enum": [ - "HUMAN", - "ROBOT" - ] - } - }, - "exampleSetFlag": false - }, - "WeekRepeatRuleItem": { - "title": "WeekRepeatRuleItem", - "type": "object", - "properties": { - "interval": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "weekNumList": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "FRIDAY", - "MONDAY", - "SATURDAY", - "SUNDAY", - "THURSDAY", - "TUESDAY", - "WEDNESDAY" - ] - } - } - }, - "exampleSetFlag": false - }, - "WindowAO": { - "title": "WindowAO", - "type": "object", - "properties": { - "apps": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/WindowAppAO", - "exampleSetFlag": false - } - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "endDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "ownerTower": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "Priority" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "startDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "WindowStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "PUBLISHED" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "WindowType" - }, - "exampleSetFlag": true, - "enum": [ - "BUSINESS_EVENT", - "FINANCE_FREEZE", - "IT_OUTAGE" - ] - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "WindowAppAO": { - "title": "WindowAppAO", - "type": "object", - "properties": { - "appCiId": { - "type": "string", - "exampleSetFlag": true - }, - "appCriticalLevel": { - "type": "string", - "exampleSetFlag": true - }, - "appCustomer": { - "type": "string", - "exampleSetFlag": true - }, - "appName": { - "type": "string", - "exampleSetFlag": true - }, - "id": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - }, - "windowId": { - "type": "integer", - "format": "int32", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "WindowAppReq": { - "title": "WindowAppReq", - "type": "object", - "properties": { - "appCiId": { - "type": "string", - "exampleSetFlag": true - }, - "appCriticalLevel": { - "type": "string", - "exampleSetFlag": true - }, - "appCustomer": { - "type": "string", - "exampleSetFlag": true - }, - "appName": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "WindowCreateReq": { - "title": "WindowCreateReq", - "type": "object", - "properties": { - "apps": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/WindowAppReq", - "exampleSetFlag": false - } - }, - "endDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "ownerTower": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "Priority" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "startDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "WindowType" - }, - "exampleSetFlag": true, - "enum": [ - "BUSINESS_EVENT", - "FINANCE_FREEZE", - "IT_OUTAGE" - ] - } - }, - "exampleSetFlag": false - }, - "WindowRecallReq": { - "title": "WindowRecallReq", - "type": "object", - "properties": { - "reason": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "WindowSearchReq": { - "title": "WindowSearchReq", - "type": "object", - "properties": { - "appCiId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false - } - }, - "calendarForm": { - "$ref": "#/components/schemas/CalendarReq", - "exampleSetFlag": true - }, - "createdAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "createdBy": { - "type": "string", - "exampleSetFlag": true - }, - "endDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "outageId": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "integer", - "format": "int32", - "exampleSetFlag": false - } - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "ownerTower": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "Priority" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "q": { - "type": "string", - "exampleSetFlag": true - }, - "startDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "status": { - "type": "string", - "extensions": { - "$hint$className": "WindowStatus" - }, - "exampleSetFlag": true, - "enum": [ - "DRAFT", - "PUBLISHED" - ] - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "array", - "exampleSetFlag": true, - "items": { - "type": "string", - "exampleSetFlag": false, - "enum": [ - "BUSINESS_EVENT", - "FINANCE_FREEZE", - "IT_OUTAGE" - ] - } - }, - "updatedAt": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "updatedBy": { - "type": "string", - "exampleSetFlag": true - } - }, - "exampleSetFlag": false - }, - "WindowUpdateReq": { - "title": "WindowUpdateReq", - "type": "object", - "properties": { - "apps": { - "type": "array", - "exampleSetFlag": true, - "items": { - "$ref": "#/components/schemas/WindowAppReq", - "exampleSetFlag": false - } - }, - "endDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "owner": { - "type": "string", - "exampleSetFlag": true - }, - "ownerTower": { - "type": "string", - "exampleSetFlag": true - }, - "priority": { - "type": "string", - "extensions": { - "$hint$className": "Priority" - }, - "exampleSetFlag": true, - "enum": [ - "HIGH", - "LOW", - "MEDIUM" - ] - }, - "startDate": { - "type": "string", - "format": "date-time", - "exampleSetFlag": true - }, - "summary": { - "type": "string", - "exampleSetFlag": true - }, - "title": { - "type": "string", - "exampleSetFlag": true - }, - "type": { - "type": "string", - "extensions": { - "$hint$className": "WindowType" - }, - "exampleSetFlag": true, - "enum": [ - "BUSINESS_EVENT", - "FINANCE_FREEZE", - "IT_OUTAGE" - ] - } - }, - "exampleSetFlag": false - } - }, - "securitySchemes": { - "Authorization": { - "type": "apiKey", - "name": "Authorization", - "in": "header" - }, - "SERVICE-AUTHENTICATION": { - "type": "apiKey", - "name": "SERVICE-AUTHENTICATION", - "in": "header" - }, - "X-Xframe-Transmitted-Auth": { - "type": "apiKey", - "name": "X-Xframe-Transmitted-Auth", - "in": "header" - } - } - } -} \ No newline at end of file diff --git a/bin/api-hub.js b/bin/swagger-api-hub.js similarity index 65% rename from bin/api-hub.js rename to bin/swagger-api-hub.js index 74b3bd5..93a8262 100755 --- a/bin/api-hub.js +++ b/bin/swagger-api-hub.js @@ -3,19 +3,21 @@ /* eslint-disable @typescript-eslint/no-var-requires */ const { sync: spawnSync } = require('cross-spawn'); const { existsSync } = require('fs'); -const { resolve } = require('path'); +const { join, resolve } = require('path'); /* eslint-enable @typescript-eslint/no-var-requires */ const rootDir = resolve(__dirname, '../'); const libDir = resolve(__dirname, '../lib'); const cliDir = resolve(__dirname, '../cli'); const srcDir = resolve(__dirname, '../src'); +const execDir = existsSync(srcDir) ? cliDir : libDir; +const ext = existsSync(srcDir) ? 'ts' : 'js'; -spawnSync('npx', ['tsx', resolve(__dirname, '../cli/repl.ts'), ...process.argv.slice(2)], { +spawnSync('npx', ['tsx', join(execDir, `repl.${ext}`), ...process.argv.slice(2)], { stdio: 'inherit', env: { ...process.env, API_HUB_ROOT: rootDir, - API_HUB_LIB_DIR: existsSync(srcDir) ? cliDir : libDir, + API_HUB_EXEC_DIR: execDir, }, }); diff --git a/cli/paths.ts b/cli/paths.ts index 3ccef8c..a885e8f 100644 --- a/cli/paths.ts +++ b/cli/paths.ts @@ -1,2 +1,2 @@ export const rootDir = process.env.API_HUB_ROOT!; -export const libDir = process.env.API_HUB_LIB!; +export const execDir = process.env.API_HUB_EXEC_DIR!; diff --git a/cli/repl.ts b/cli/repl.ts index 2331b26..eaefa89 100644 --- a/cli/repl.ts +++ b/cli/repl.ts @@ -14,7 +14,7 @@ import type { ServiceConfig } from './types'; const program = new commander.Command(); -process.title = 'api-hub-cli'; +process.title = 'swagger-api-hub-cli'; program .name(Object.keys(packageJson.bin)[0]) @@ -23,7 +23,7 @@ program .argument( '[config-path]', 'Path to the configuration file, if not specified, the default configuration file will be used', - './api-hub.config.ts' + './swagger-api-hub.config.ts' ) .helpOption('-h, --help') .version(packageJson.version, '-v, --version') diff --git a/package.json b/package.json index 26db772..3181921 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { - "name": "api-hub", - "version": "1.0.0-alpha.0", + "name": "swagger-api-hub", + "version": "1.0.0", "description": "Generate front-end access code for swagger backend services in one click", "keywords": [ "OpenApi", @@ -8,19 +8,19 @@ "api", "codegen" ], - "homepage": "https://github.com/shijistar/api-hub#readme", + "homepage": "https://github.com/shijistar/swagger-api-hub#readme", "bugs": { - "url": "https://github.com/shijistar/api-hub/issues" + "url": "https://github.com/shijistar/swagger-api-hub/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/shijistar/api-hub.git" + "url": "git+https://github.com/shijistar/swagger-api-hub.git" }, "license": "MIT", "author": "李凤宝 ", "main": "index.js", "bin": { - "api-hub": "./bin/api-hub.ts" + "swagger-api-hub": "./bin/swagger-api-hub.js" }, "files": [ "bin", diff --git a/api-hub.config.ts b/sample/swagger-api-hub.config.ts similarity index 68% rename from api-hub.config.ts rename to sample/swagger-api-hub.config.ts index 89797e8..e9abeb7 100644 --- a/api-hub.config.ts +++ b/sample/swagger-api-hub.config.ts @@ -1,11 +1,10 @@ -import type { ServiceConfig } from './cli/types'; +import type { ServiceConfig } from '../cli/types'; const services: ServiceConfig[] = [ { id: 'iam', name: 'User Management Service', - // url: 'https://api.example.com/iam/swagger/v3', - url: 'http://localhost:3000/api-spec.json', + url: 'https://api.example.com/iam/swagger/v3', output: './src/api/iam', }, { diff --git a/tsconfig.json b/tsconfig.json index b2a04a5..d00ebf9 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { "baseUrl": ".", "outDir": "lib", - "target": "ESNext", + "target": "ES2021", "module": "ESNext", "moduleResolution": "node", "lib": ["ESNext", "DOM", "WebWorker"],