Skip to content

Commit

Permalink
fix: order of fields in the IntegrationMapping schema
Browse files Browse the repository at this point in the history
  • Loading branch information
wsocha committed Jan 15, 2025
1 parent 0722a7f commit 7485bf2
Showing 1 changed file with 32 additions and 32 deletions.
64 changes: 32 additions & 32 deletions openapi/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

0 comments on commit 7485bf2

Please sign in to comment.