diff --git a/kintone/20250101000000/components/schemas/AppsGetAppWithSpaceIdForm.yaml b/kintone/20250101000000/components/schemas/AppsGetAppWithSpaceIdForm.yaml index ea7587d..c39e07f 100644 --- a/kintone/20250101000000/components/schemas/AppsGetAppWithSpaceIdForm.yaml +++ b/kintone/20250101000000/components/schemas/AppsGetAppWithSpaceIdForm.yaml @@ -1,38 +1,65 @@ --- properties: appId: + description: "The App ID\n" format: "long" type: "integer" code: + description: "The App Code of the App.\nAn empty string is returned if an App\ + \ Code is not set in the App's settings.\n" type: "string" createdAt: + description: "The date of when the App was created.\n" format: "date-time" type: "string" creator: + description: "The information of the user who created the App.\n" properties: code: + description: "The log in name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" type: "object" description: + description: "The description of the App.\nIf Localization settings are enabled,\ + \ the localized name will be returned.\nThe localization language will be dependent\ + \ on the language settings of the Kintone user authenticating this API.\n" type: "string" modifiedAt: + description: "The date of when the App was last modified.\n" format: "date-time" type: "string" modifier: + description: "The information of the user who last updated the App.\n" properties: code: + description: "The log in name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" type: "object" name: + description: "The name of the App.\nIf Localization settings are enabled, the\ + \ localized name will be returned.\nThe localization language will be dependent\ + \ on the language settings of the Kintone user authenticating this API.\n" type: "string" spaceId: + description: " If the App was created inside a Space,\n it will return the\ + \ Space ID. If not, null is returned.\n" format: "long" type: "integer" threadId: + description: " If the App was created inside a Space,\n it will return the\ + \ Thread ID of the Thread of the space it belongs to.\n Apps that are created\ + \ inside Spaces using the GUI will be automatically allocated to the default\ + \ Thread.\n If the App was not created in a Space, null is returned.\n" format: "long" type: "integer" type: "object" diff --git a/kintone/20250101000000/components/schemas/AppsStatisticsGetAppForm.yaml b/kintone/20250101000000/components/schemas/AppsStatisticsGetAppForm.yaml index b19381b..9db22e0 100644 --- a/kintone/20250101000000/components/schemas/AppsStatisticsGetAppForm.yaml +++ b/kintone/20250101000000/components/schemas/AppsStatisticsGetAppForm.yaml @@ -8,8 +8,12 @@ properties: creator: properties: code: + description: "The log in name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" type: "object" customized: @@ -29,8 +33,12 @@ properties: modifier: properties: code: + description: "The log in name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" type: "object" name: diff --git a/kintone/20250101000000/components/schemas/BulkRequestPostRecordsPutOutputForm.yaml b/kintone/20250101000000/components/schemas/BulkRequestPostRecordsPutOutputForm.yaml index 9bb1630..f578588 100644 --- a/kintone/20250101000000/components/schemas/BulkRequestPostRecordsPutOutputForm.yaml +++ b/kintone/20250101000000/components/schemas/BulkRequestPostRecordsPutOutputForm.yaml @@ -1,10 +1,12 @@ --- properties: records: - items: - additionalProperties: + oneOf: + - type: "array" + items: $ref: "../../openapi.yaml#/components/schemas/BulkRequestPostRecordBean" - type: "object" - type: "array" + - type: "array" + items: + $ref: "../../openapi.yaml#/components/schemas/BulkRequestPostUpsertRecordBean" type: "object" diff --git a/kintone/20250101000000/components/schemas/BulkRequestPostUpsertRecordBean.yaml b/kintone/20250101000000/components/schemas/BulkRequestPostUpsertRecordBean.yaml new file mode 100644 index 0000000..d9fa641 --- /dev/null +++ b/kintone/20250101000000/components/schemas/BulkRequestPostUpsertRecordBean.yaml @@ -0,0 +1,15 @@ +--- +properties: + id: + format: "long" + type: "integer" + operation: + enum: + - "INSERT" + - "UPDATE" + type: "string" + revision: + format: "long" + type: "integer" +type: "object" + diff --git a/kintone/20250101000000/components/schemas/RecordCommentsGetCommentOutputForm.yaml b/kintone/20250101000000/components/schemas/RecordCommentsGetCommentOutputForm.yaml index 33393a8..87669b3 100644 --- a/kintone/20250101000000/components/schemas/RecordCommentsGetCommentOutputForm.yaml +++ b/kintone/20250101000000/components/schemas/RecordCommentsGetCommentOutputForm.yaml @@ -6,8 +6,12 @@ properties: creator: properties: code: + description: "The log in name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" type: "object" id: diff --git a/kintone/20250101000000/components/schemas/RecordsPutUpsertRecordBean.yaml b/kintone/20250101000000/components/schemas/RecordsPutUpsertRecordBean.yaml new file mode 100644 index 0000000..d9fa641 --- /dev/null +++ b/kintone/20250101000000/components/schemas/RecordsPutUpsertRecordBean.yaml @@ -0,0 +1,15 @@ +--- +properties: + id: + format: "long" + type: "integer" + operation: + enum: + - "INSERT" + - "UPDATE" + type: "string" + revision: + format: "long" + type: "integer" +type: "object" + diff --git a/kintone/20250101000000/components/schemas/SpaceGetAttachedApp.yaml b/kintone/20250101000000/components/schemas/SpaceGetAttachedApp.yaml index 9c5d7d5..8d0ecfa 100644 --- a/kintone/20250101000000/components/schemas/SpaceGetAttachedApp.yaml +++ b/kintone/20250101000000/components/schemas/SpaceGetAttachedApp.yaml @@ -1,33 +1,54 @@ --- properties: appId: + description: "The App ID\n" format: "long" type: "integer" code: + description: "The App Code of the App.\nAn empty string is returned if an App\ + \ Code is not set in the App's settings.\n" type: "string" createdAt: + description: "The date of when the App was created.\n" format: "date-time" type: "string" creator: + description: "The information of the user who created the App.\n" properties: code: + description: "The log in name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" type: "object" description: + description: "The description of the App.\nIf Localization settings are enabled,\ + \ the localized name will be returned.\nThe localization language will be dependent\ + \ on the language settings of the Kintone user authenticating this API.\n" type: "string" modifiedAt: + description: "The date of when the App was last modified.\n" format: "date-time" type: "string" modifier: + description: "The information of the user who last updated the App.\n" properties: code: + description: "The log in name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" type: "object" name: + description: "The name of the App.\nIf Localization settings are enabled, the\ + \ localized name will be returned.\nThe localization language will be dependent\ + \ on the language settings of the Kintone user authenticating this API.\n" type: "string" threadId: format: "long" diff --git a/kintone/20250101000000/components/schemas/SpacesStatisticsGetSpaceForm.yaml b/kintone/20250101000000/components/schemas/SpacesStatisticsGetSpaceForm.yaml index 5f66f75..547dd9f 100644 --- a/kintone/20250101000000/components/schemas/SpacesStatisticsGetSpaceForm.yaml +++ b/kintone/20250101000000/components/schemas/SpacesStatisticsGetSpaceForm.yaml @@ -9,8 +9,12 @@ properties: creator: properties: code: + description: "The log in name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" type: "object" id: @@ -29,8 +33,12 @@ properties: modifier: properties: code: + description: "The log in name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string is returned\ + \ for inactive users and deleted users.\n" type: "string" type: "object" name: diff --git a/kintone/20250101000000/openapi.yaml b/kintone/20250101000000/openapi.yaml index eb22e67..8ed0d37 100644 --- a/kintone/20250101000000/openapi.yaml +++ b/kintone/20250101000000/openapi.yaml @@ -2,17 +2,8 @@ openapi: "3.1.0" info: title: "REST API SPEC" - version: "20250101000000" -servers: - # - url: https://sample.cybozu.com - - url: https://{domainId}.cybozu.com - variables: - domainId: - default: sample - - url: "{Custom URL}" - variables: - "Custom URL": - default: https://sample.cybozu.com + version: "1.0.0" +servers: [] paths: /k/guest/{guestSpaceId}/v1/app.json: $ref: "./paths/k_guest_v1_app.yaml" @@ -578,6 +569,8 @@ components: $ref: "./components/schemas/BulkRequestPostTimeSimpleValue.yaml" BulkRequestPostUpdateKey: $ref: "./components/schemas/BulkRequestPostUpdateKey.yaml" + BulkRequestPostUpsertRecordBean: + $ref: "./components/schemas/BulkRequestPostUpsertRecordBean.yaml" BulkRequestPostUserEntitySimpleValue: $ref: "./components/schemas/BulkRequestPostUserEntitySimpleValue.yaml" BulkRequestPostUserSelectSimpleValue: @@ -1604,6 +1597,8 @@ components: $ref: "./components/schemas/RecordsPutTimeSimpleValue.yaml" RecordsPutUpdateKey: $ref: "./components/schemas/RecordsPutUpdateKey.yaml" + RecordsPutUpsertRecordBean: + $ref: "./components/schemas/RecordsPutUpsertRecordBean.yaml" RecordsPutUserEntitySimpleValue: $ref: "./components/schemas/RecordsPutUserEntitySimpleValue.yaml" RecordsPutUserSelectSimpleValue: diff --git a/kintone/20250101000000/paths/k_guest_v1_app.yaml b/kintone/20250101000000/paths/k_guest_v1_app.yaml index 81e354c..3ce5848 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app.yaml @@ -7,11 +7,15 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - - in: "query" + - description: "The App ID" + in: "query" name: "id" required: true schema: + description: "The App ID" format: "long" type: "integer" responses: @@ -22,38 +26,68 @@ get: schema: properties: appId: + description: "The App ID\n" format: "long" type: "integer" code: + description: "The App Code of the App.\nAn empty string is returned\ + \ if an App Code is not set in the App's settings.\n" type: "string" createdAt: + description: "The date of when the App was created.\n" format: "date-time" type: "string" creator: + description: "The information of the user who created the App.\n" properties: code: + description: "The log in name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" type: "object" description: + description: "The description of the App.\nIf Localization settings\ + \ are enabled, the localized name will be returned.\nThe localization\ + \ language will be dependent on the language settings of the Kintone\ + \ user authenticating this API.\n" type: "string" modifiedAt: + description: "The date of when the App was last modified.\n" format: "date-time" type: "string" modifier: + description: "The information of the user who last updated the App.\n" properties: code: + description: "The log in name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" type: "object" name: + description: "The name of the App.\nIf Localization settings are enabled,\ + \ the localized name will be returned.\nThe localization language\ + \ will be dependent on the language settings of the Kintone user\ + \ authenticating this API.\n" type: "string" spaceId: + description: " If the App was created inside a Space,\n it will\ + \ return the Space ID. If not, null is returned.\n" format: "long" type: "integer" threadId: + description: " If the App was created inside a Space,\n it will\ + \ return the Thread ID of the Thread of the space it belongs to.\n\ + \ Apps that are created inside Spaces using the GUI will be automatically\ + \ allocated to the default Thread.\n If the App was not created\ + \ in a Space, null is returned.\n" format: "long" type: "integer" title: "getAppForGuestSpaceResponse" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_acl.yaml b/kintone/20250101000000/paths/k_guest_v1_app_acl.yaml index 901ecf5..8e25559 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_acl.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_acl.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -51,6 +53,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_actions.yaml b/kintone/20250101000000/paths/k_guest_v1_app_actions.yaml index 7242cdd..5781fa8 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_actions.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_actions.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_adminnotes.yaml b/kintone/20250101000000/paths/k_guest_v1_app_adminnotes.yaml index 7196828..264e8c4 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_adminnotes.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_adminnotes.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_customize.yaml b/kintone/20250101000000/paths/k_guest_v1_app_customize.yaml index 4f77859..2b74a22 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_customize.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_customize.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_form_fields.yaml b/kintone/20250101000000/paths/k_guest_v1_app_form_fields.yaml index e5be67b..d9870ed 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_form_fields.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_form_fields.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_form_layout.yaml b/kintone/20250101000000/paths/k_guest_v1_app_form_layout.yaml index 3efec57..d44acfc 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_form_layout.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_form_layout.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_move.yaml b/kintone/20250101000000/paths/k_guest_v1_app_move.yaml index 09f8591..e148b7b 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_move.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_move.yaml @@ -7,6 +7,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_app_notifications_general.yaml b/kintone/20250101000000/paths/k_guest_v1_app_notifications_general.yaml index 8d680f8..3684cf0 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_notifications_general.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_notifications_general.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_notifications_perrecord.yaml b/kintone/20250101000000/paths/k_guest_v1_app_notifications_perrecord.yaml index 263324e..754c94b 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_notifications_perrecord.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_notifications_perrecord.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_notifications_reminder.yaml b/kintone/20250101000000/paths/k_guest_v1_app_notifications_reminder.yaml index 076f1c2..1da8d32 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_notifications_reminder.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_notifications_reminder.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_plugins.yaml b/kintone/20250101000000/paths/k_guest_v1_app_plugins.yaml index 3871c7e..97d514c 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_plugins.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_plugins.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_reports.yaml b/kintone/20250101000000/paths/k_guest_v1_app_reports.yaml index dea32f2..ce58f38 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_reports.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_reports.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_settings.yaml b/kintone/20250101000000/paths/k_guest_v1_app_settings.yaml index 6e4cc2a..d121390 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_settings.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_settings.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_status.yaml b/kintone/20250101000000/paths/k_guest_v1_app_status.yaml index c7332c6..1a7293e 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_status.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_status.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_app_views.yaml b/kintone/20250101000000/paths/k_guest_v1_app_views.yaml index f8d194c..cf6d051 100644 --- a/kintone/20250101000000/paths/k_guest_v1_app_views.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_app_views.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_apps.yaml b/kintone/20250101000000/paths/k_guest_v1_apps.yaml index da6943e..c87b436 100644 --- a/kintone/20250101000000/paths/k_guest_v1_apps.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_apps.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "codes" diff --git a/kintone/20250101000000/paths/k_guest_v1_apps_statistics.yaml b/kintone/20250101000000/paths/k_guest_v1_apps_statistics.yaml index dec4fab..f271554 100644 --- a/kintone/20250101000000/paths/k_guest_v1_apps_statistics.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_apps_statistics.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "offset" diff --git a/kintone/20250101000000/paths/k_guest_v1_bulkrequest.yaml b/kintone/20250101000000/paths/k_guest_v1_bulkrequest.yaml index 66aa186..6883cee 100644 --- a/kintone/20250101000000/paths/k_guest_v1_bulkrequest.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_bulkrequest.yaml @@ -7,6 +7,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_field_acl.yaml b/kintone/20250101000000/paths/k_guest_v1_field_acl.yaml index 3962f1b..a3a93a9 100644 --- a/kintone/20250101000000/paths/k_guest_v1_field_acl.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_field_acl.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -53,6 +55,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_file.yaml b/kintone/20250101000000/paths/k_guest_v1_file.yaml index cae75bf..855a705 100644 --- a/kintone/20250101000000/paths/k_guest_v1_file.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_file.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "fileKey" @@ -26,6 +28,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_form.yaml b/kintone/20250101000000/paths/k_guest_v1_form.yaml index a2e1851..b03cfca 100644 --- a/kintone/20250101000000/paths/k_guest_v1_form.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_form.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_guests.yaml b/kintone/20250101000000/paths/k_guest_v1_guests.yaml index 79e3e4b..e13113d 100644 --- a/kintone/20250101000000/paths/k_guest_v1_guests.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_guests.yaml @@ -7,6 +7,8 @@ delete: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "guests" @@ -32,6 +34,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_plugin.yaml b/kintone/20250101000000/paths/k_guest_v1_plugin.yaml index 03fcd8c..7d05972 100644 --- a/kintone/20250101000000/paths/k_guest_v1_plugin.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_plugin.yaml @@ -7,6 +7,8 @@ delete: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "id" @@ -29,6 +31,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -68,6 +72,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_plugin_apps.yaml b/kintone/20250101000000/paths/k_guest_v1_plugin_apps.yaml index e2e64d8..b08af51 100644 --- a/kintone/20250101000000/paths/k_guest_v1_plugin_apps.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_plugin_apps.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "offset" diff --git a/kintone/20250101000000/paths/k_guest_v1_plugins.yaml b/kintone/20250101000000/paths/k_guest_v1_plugins.yaml index 38ff858..667e01e 100644 --- a/kintone/20250101000000/paths/k_guest_v1_plugins.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_plugins.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "offset" diff --git a/kintone/20250101000000/paths/k_guest_v1_plugins_required.yaml b/kintone/20250101000000/paths/k_guest_v1_plugins_required.yaml index 9d93b54..c4ccdfd 100644 --- a/kintone/20250101000000/paths/k_guest_v1_plugins_required.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_plugins_required.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "offset" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app.yaml index c68d0d2..e34e9d7 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app.yaml @@ -7,6 +7,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_acl.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_acl.yaml index 8d34399..058e484 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_acl.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_acl.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -51,6 +53,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_actions.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_actions.yaml index 4eed5d0..352a1d7 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_actions.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_actions.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -55,6 +57,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_adminnotes.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_adminnotes.yaml index 5c0c6f8..9afcaae 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_adminnotes.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_adminnotes.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -51,6 +53,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_customize.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_customize.yaml index bdb8cb7..4d048f4 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_customize.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_customize.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -82,6 +84,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_deploy.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_deploy.yaml index 6030937..8946931 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_deploy.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_deploy.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "apps" @@ -39,6 +41,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_form_fields.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_form_fields.yaml index 1c83491..82f4c07 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_form_fields.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_form_fields.yaml @@ -7,6 +7,8 @@ delete: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" @@ -49,6 +51,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -120,6 +124,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" @@ -191,6 +197,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_form_layout.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_form_layout.yaml index 5860998..f0c4384 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_form_layout.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_form_layout.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -54,6 +56,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_general.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_general.yaml index ad09f5d..483f821 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_general.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_general.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -53,6 +55,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_perrecord.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_perrecord.yaml index bfd3c79..c9fc062 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_perrecord.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_perrecord.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -51,6 +53,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_reminder.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_reminder.yaml index fd7e7a8..188d0f0 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_reminder.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_notifications_reminder.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -53,6 +55,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_plugins.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_plugins.yaml index 8ef10a8..53b9f67 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_plugins.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_plugins.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" @@ -50,6 +52,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_reports.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_reports.yaml index 8ce283f..e78ebe6 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_reports.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_reports.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -57,6 +59,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_settings.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_settings.yaml index b6ad416..bd7d01b 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_settings.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_settings.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -86,6 +88,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_status.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_status.yaml index 8646d2f..b09a558 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_status.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_status.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -57,6 +59,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_app_views.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_app_views.yaml index 6a78413..b32b00a 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_app_views.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_app_views.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -58,6 +60,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_field_acl.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_field_acl.yaml index e90e136..8caf500 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_field_acl.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_field_acl.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -53,6 +55,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_form.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_form.yaml index 686fa93..a6d66bb 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_form.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_form.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_preview_record_acl.yaml b/kintone/20250101000000/paths/k_guest_v1_preview_record_acl.yaml index 1ea45a5..f98a325 100644 --- a/kintone/20250101000000/paths/k_guest_v1_preview_record_acl.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_preview_record_acl.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -53,6 +55,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_record.yaml b/kintone/20250101000000/paths/k_guest_v1_record.yaml index a163af7..0483f2f 100644 --- a/kintone/20250101000000/paths/k_guest_v1_record.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_record.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -80,6 +82,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" @@ -141,6 +145,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_record_acl.yaml b/kintone/20250101000000/paths/k_guest_v1_record_acl.yaml index 48cbd97..88bb16a 100644 --- a/kintone/20250101000000/paths/k_guest_v1_record_acl.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_record_acl.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -53,6 +55,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_record_assignees.yaml b/kintone/20250101000000/paths/k_guest_v1_record_assignees.yaml index 1ace790..1bc8a35 100644 --- a/kintone/20250101000000/paths/k_guest_v1_record_assignees.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_record_assignees.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_record_comment.yaml b/kintone/20250101000000/paths/k_guest_v1_record_comment.yaml index 89c52ff..bc0aefb 100644 --- a/kintone/20250101000000/paths/k_guest_v1_record_comment.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_record_comment.yaml @@ -7,6 +7,8 @@ delete: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" @@ -42,6 +44,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_record_comments.yaml b/kintone/20250101000000/paths/k_guest_v1_record_comments.yaml index 71fb8be..2f59d9d 100644 --- a/kintone/20250101000000/paths/k_guest_v1_record_comments.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_record_comments.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_record_status.yaml b/kintone/20250101000000/paths/k_guest_v1_record_status.yaml index 33c677b..483c972 100644 --- a/kintone/20250101000000/paths/k_guest_v1_record_status.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_record_status.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_records.yaml b/kintone/20250101000000/paths/k_guest_v1_records.yaml index 344e21c..d56c2a1 100644 --- a/kintone/20250101000000/paths/k_guest_v1_records.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_records.yaml @@ -7,6 +7,8 @@ delete: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" @@ -46,6 +48,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" @@ -125,6 +129,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -155,11 +161,13 @@ put: schema: properties: records: - items: - additionalProperties: + oneOf: + - type: "array" + items: $ref: "../openapi.yaml#/components/schemas/RecordsPutRecordBean" - type: "object" - type: "array" + - type: "array" + items: + $ref: "../openapi.yaml#/components/schemas/RecordsPutUpsertRecordBean" title: "putRecordsForGuestSpaceResponse" type: "object" tags: @@ -172,6 +180,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_records_acl_evaluate.yaml b/kintone/20250101000000/paths/k_guest_v1_records_acl_evaluate.yaml index db6d126..47a91c5 100644 --- a/kintone/20250101000000/paths/k_guest_v1_records_acl_evaluate.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_records_acl_evaluate.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "app" diff --git a/kintone/20250101000000/paths/k_guest_v1_records_cursor.yaml b/kintone/20250101000000/paths/k_guest_v1_records_cursor.yaml index f0659b1..5a4d11a 100644 --- a/kintone/20250101000000/paths/k_guest_v1_records_cursor.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_records_cursor.yaml @@ -7,6 +7,8 @@ delete: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "id" @@ -29,6 +31,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "id" @@ -87,6 +91,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_records_status.yaml b/kintone/20250101000000/paths/k_guest_v1_records_status.yaml index a1c286d..1544949 100644 --- a/kintone/20250101000000/paths/k_guest_v1_records_status.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_records_status.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_space.yaml b/kintone/20250101000000/paths/k_guest_v1_space.yaml index 491bfd8..5c7b5ed 100644 --- a/kintone/20250101000000/paths/k_guest_v1_space.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_space.yaml @@ -7,6 +7,8 @@ delete: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "id" @@ -30,6 +32,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -96,6 +100,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "id" @@ -128,8 +134,12 @@ get: creator: properties: code: + description: "The log in name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" type: "object" defaultThread: @@ -150,8 +160,12 @@ get: modifier: properties: code: + description: "The log in name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" type: "object" name: diff --git a/kintone/20250101000000/paths/k_guest_v1_space_body.yaml b/kintone/20250101000000/paths/k_guest_v1_space_body.yaml index bfcedfa..99c13a0 100644 --- a/kintone/20250101000000/paths/k_guest_v1_space_body.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_space_body.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_space_guests.yaml b/kintone/20250101000000/paths/k_guest_v1_space_guests.yaml index ddca088..8b1f1e3 100644 --- a/kintone/20250101000000/paths/k_guest_v1_space_guests.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_space_guests.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_space_members.yaml b/kintone/20250101000000/paths/k_guest_v1_space_members.yaml index bb78ef9..e7f8948 100644 --- a/kintone/20250101000000/paths/k_guest_v1_space_members.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_space_members.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -41,6 +43,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "id" diff --git a/kintone/20250101000000/paths/k_guest_v1_space_thread.yaml b/kintone/20250101000000/paths/k_guest_v1_space_thread.yaml index b73a2af..f183536 100644 --- a/kintone/20250101000000/paths/k_guest_v1_space_thread.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_space_thread.yaml @@ -7,6 +7,8 @@ put: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true @@ -44,6 +46,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_space_thread_comment.yaml b/kintone/20250101000000/paths/k_guest_v1_space_thread_comment.yaml index 2638800..fcb9df8 100644 --- a/kintone/20250101000000/paths/k_guest_v1_space_thread_comment.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_space_thread_comment.yaml @@ -7,6 +7,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_guest_v1_spaces_statistics.yaml b/kintone/20250101000000/paths/k_guest_v1_spaces_statistics.yaml index 0d47b3e..2a20656 100644 --- a/kintone/20250101000000/paths/k_guest_v1_spaces_statistics.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_spaces_statistics.yaml @@ -7,6 +7,8 @@ get: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" - in: "query" name: "offset" diff --git a/kintone/20250101000000/paths/k_guest_v1_template_space.yaml b/kintone/20250101000000/paths/k_guest_v1_template_space.yaml index 3051ee0..afa0a3a 100644 --- a/kintone/20250101000000/paths/k_guest_v1_template_space.yaml +++ b/kintone/20250101000000/paths/k_guest_v1_template_space.yaml @@ -7,6 +7,8 @@ post: name: "guestSpaceId" required: true schema: + description: "guest space id" + title: "guestSpaceId" type: "integer" requestBody: required: true diff --git a/kintone/20250101000000/paths/k_v1_app.yaml b/kintone/20250101000000/paths/k_v1_app.yaml index dbb2c27..f29e2f1 100644 --- a/kintone/20250101000000/paths/k_v1_app.yaml +++ b/kintone/20250101000000/paths/k_v1_app.yaml @@ -2,10 +2,12 @@ get: operationId: "getApp" parameters: - - in: "query" + - description: "The App ID" + in: "query" name: "id" required: true schema: + description: "The App ID" format: "long" type: "integer" responses: @@ -16,38 +18,68 @@ get: schema: properties: appId: + description: "The App ID\n" format: "long" type: "integer" code: + description: "The App Code of the App.\nAn empty string is returned\ + \ if an App Code is not set in the App's settings.\n" type: "string" createdAt: + description: "The date of when the App was created.\n" format: "date-time" type: "string" creator: + description: "The information of the user who created the App.\n" properties: code: + description: "The log in name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" type: "object" description: + description: "The description of the App.\nIf Localization settings\ + \ are enabled, the localized name will be returned.\nThe localization\ + \ language will be dependent on the language settings of the Kintone\ + \ user authenticating this API.\n" type: "string" modifiedAt: + description: "The date of when the App was last modified.\n" format: "date-time" type: "string" modifier: + description: "The information of the user who last updated the App.\n" properties: code: + description: "The log in name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" type: "object" name: + description: "The name of the App.\nIf Localization settings are enabled,\ + \ the localized name will be returned.\nThe localization language\ + \ will be dependent on the language settings of the Kintone user\ + \ authenticating this API.\n" type: "string" spaceId: + description: " If the App was created inside a Space,\n it will\ + \ return the Space ID. If not, null is returned.\n" format: "long" type: "integer" threadId: + description: " If the App was created inside a Space,\n it will\ + \ return the Thread ID of the Thread of the space it belongs to.\n\ + \ Apps that are created inside Spaces using the GUI will be automatically\ + \ allocated to the default Thread.\n If the App was not created\ + \ in a Space, null is returned.\n" format: "long" type: "integer" title: "getAppResponse" diff --git a/kintone/20250101000000/paths/k_v1_records.yaml b/kintone/20250101000000/paths/k_v1_records.yaml index 9b40935..fb8f7b5 100644 --- a/kintone/20250101000000/paths/k_v1_records.yaml +++ b/kintone/20250101000000/paths/k_v1_records.yaml @@ -137,11 +137,13 @@ put: schema: properties: records: - items: - additionalProperties: + oneOf: + - type: "array" + items: $ref: "../openapi.yaml#/components/schemas/RecordsPutRecordBean" - type: "object" - type: "array" + - type: "array" + items: + $ref: "../openapi.yaml#/components/schemas/RecordsPutUpsertRecordBean" title: "putRecordsResponse" type: "object" tags: diff --git a/kintone/20250101000000/paths/k_v1_space.yaml b/kintone/20250101000000/paths/k_v1_space.yaml index 8359709..8846d89 100644 --- a/kintone/20250101000000/paths/k_v1_space.yaml +++ b/kintone/20250101000000/paths/k_v1_space.yaml @@ -110,8 +110,12 @@ get: creator: properties: code: + description: "The log in name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" type: "object" defaultThread: @@ -132,8 +136,12 @@ get: modifier: properties: code: + description: "The log in name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" name: + description: "The display name of the creator.\nAn empty string\ + \ is returned for inactive users and deleted users.\n" type: "string" type: "object" name: