Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: order of fields in the IntegrationMapping schema #496

Merged
merged 1 commit into from
Jan 15, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
64 changes: 32 additions & 32 deletions openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "http://www.apache.org/licenses/LICENSE-2.0"
},
"version": "2024.0",
"x-box-commit-hash": "7bca5e4887"
"x-box-commit-hash": "f9a9283401"
},
"servers": [
{
Expand Down Expand Up @@ -30430,37 +30430,6 @@
{
"$ref": "#/components/schemas/IntegrationMappingBase"
},
{
"type": "object",
"properties": {
"box_item": {
"description": "The Box folder, to which the object from the\npartner app domain (referenced in `partner_item_id`) is mapped",
"allOf": [
{
"$ref": "#/components/schemas/Folder--Mini"
}
],
"nullable": false
},
"created_at": {
"description": "When the integration mapping object was created",
"type": "string",
"format": "date-time",
"example": "2012-12-12T10:53:43-08:00",
"nullable": false
},
"modified_at": {
"description": "When the integration mapping object was last modified",
"type": "string",
"format": "date-time",
"example": "2012-12-12T10:53:43-08:00",
"nullable": false
}
},
"required": [
"box_item"
]
},
{
"properties": {
"integration_type": {
Expand Down Expand Up @@ -30519,6 +30488,37 @@
]
}
}
},
{
"type": "object",
"properties": {
"box_item": {
"description": "The Box folder, to which the object from the\npartner app domain (referenced in `partner_item_id`) is mapped",
"allOf": [
{
"$ref": "#/components/schemas/Folder--Mini"
}
],
"nullable": false
},
"created_at": {
"description": "When the integration mapping object was created",
"type": "string",
"format": "date-time",
"example": "2012-12-12T10:53:43-08:00",
"nullable": false
},
"modified_at": {
"description": "When the integration mapping object was last modified",
"type": "string",
"format": "date-time",
"example": "2012-12-12T10:53:43-08:00",
"nullable": false
}
},
"required": [
"box_item"
]
}
],
"required": [
Expand Down
Loading