Skip to content

Commit

Permalink
Generated
Browse files Browse the repository at this point in the history
  • Loading branch information
harshithadurai authored and openapi-getsentry-bot committed Oct 16, 2024
1 parent 3bbdc94 commit 9c03670
Showing 1 changed file with 153 additions and 3 deletions.
156 changes: 153 additions & 3 deletions openapi-derefed.json
Original file line number Diff line number Diff line change
Expand Up @@ -4401,6 +4401,25 @@
"utc": {
"type": "boolean",
"description": "Setting that lets you display saved time range for this dashboard in UTC."
},
"permissions": {
"allOf": [
{
"type": "object",
"description": "Allows parameters to be defined in snake case, but passed as camel case.\n\nErrors are output in camel case.",
"properties": {
"is_creator_only_editable": {
"type": "boolean",
"description": "Whether the dashboard is editable only by the creator."
}
},
"required": [
"is_creator_only_editable"
]
}
],
"nullable": true,
"description": "Permissions that restrict users from editing dashboards"
}
},
"required": [
Expand Down Expand Up @@ -4818,13 +4837,26 @@
}
}
}
},
"permissions": {
"type": "object",
"properties": {
"is_creator_only_editable": {
"type": "boolean"
}
},
"required": [
"is_creator_only_editable"
],
"nullable": true
}
},
"required": [
"createdBy",
"dateCreated",
"filters",
"id",
"permissions",
"projects",
"title",
"widgets"
Expand Down Expand Up @@ -4922,7 +4954,10 @@
1
],
"filters": {},
"period": "7d"
"period": "7d",
"permissions": {
"is_creator_only_editable": false
}
},
"summary": "Create Dashboard"
}
Expand Down Expand Up @@ -5380,13 +5415,26 @@
}
}
}
},
"permissions": {
"type": "object",
"properties": {
"is_creator_only_editable": {
"type": "boolean"
}
},
"required": [
"is_creator_only_editable"
],
"nullable": true
}
},
"required": [
"createdBy",
"dateCreated",
"filters",
"id",
"permissions",
"projects",
"title",
"widgets"
Expand Down Expand Up @@ -5484,7 +5532,10 @@
1
],
"filters": {},
"period": "7d"
"period": "7d",
"permissions": {
"is_creator_only_editable": false
}
},
"summary": "Dashboard GET response"
}
Expand Down Expand Up @@ -5721,6 +5772,25 @@
"utc": {
"type": "boolean",
"description": "Setting that lets you display saved time range for this dashboard in UTC."
},
"permissions": {
"allOf": [
{
"type": "object",
"description": "Allows parameters to be defined in snake case, but passed as camel case.\n\nErrors are output in camel case.",
"properties": {
"is_creator_only_editable": {
"type": "boolean",
"description": "Whether the dashboard is editable only by the creator."
}
},
"required": [
"is_creator_only_editable"
]
}
],
"nullable": true,
"description": "Permissions that restrict users from editing dashboards"
}
}
}
Expand Down Expand Up @@ -6134,13 +6204,26 @@
}
}
}
},
"permissions": {
"type": "object",
"properties": {
"is_creator_only_editable": {
"type": "boolean"
}
},
"required": [
"is_creator_only_editable"
],
"nullable": true
}
},
"required": [
"createdBy",
"dateCreated",
"filters",
"id",
"permissions",
"projects",
"title",
"widgets"
Expand Down Expand Up @@ -6238,7 +6321,10 @@
1
],
"filters": {},
"period": "7d"
"period": "7d",
"permissions": {
"is_creator_only_editable": false
}
},
"summary": "Dashboard PUT response"
}
Expand Down Expand Up @@ -47259,6 +47345,25 @@
"utc": {
"type": "boolean",
"description": "Setting that lets you display saved time range for this dashboard in UTC."
},
"permissions": {
"allOf": [
{
"type": "object",
"description": "Allows parameters to be defined in snake case, but passed as camel case.\n\nErrors are output in camel case.",
"properties": {
"is_creator_only_editable": {
"type": "boolean",
"description": "Whether the dashboard is editable only by the creator."
}
},
"required": [
"is_creator_only_editable"
]
}
],
"nullable": true,
"description": "Permissions that restrict users from editing dashboards"
}
},
"required": [
Expand Down Expand Up @@ -47456,6 +47561,25 @@
"utc": {
"type": "boolean",
"description": "Setting that lets you display saved time range for this dashboard in UTC."
},
"permissions": {
"allOf": [
{
"type": "object",
"description": "Allows parameters to be defined in snake case, but passed as camel case.\n\nErrors are output in camel case.",
"properties": {
"is_creator_only_editable": {
"type": "boolean",
"description": "Whether the dashboard is editable only by the creator."
}
},
"required": [
"is_creator_only_editable"
]
}
],
"nullable": true,
"description": "Permissions that restrict users from editing dashboards"
}
}
},
Expand Down Expand Up @@ -47853,13 +47977,26 @@
}
}
}
},
"permissions": {
"type": "object",
"properties": {
"is_creator_only_editable": {
"type": "boolean"
}
},
"required": [
"is_creator_only_editable"
],
"nullable": true
}
},
"required": [
"createdBy",
"dateCreated",
"filters",
"id",
"permissions",
"projects",
"title",
"widgets"
Expand Down Expand Up @@ -48084,6 +48221,19 @@
]
}
},
"DashboardPermissions": {
"type": "object",
"description": "Allows parameters to be defined in snake case, but passed as camel case.\n\nErrors are output in camel case.",
"properties": {
"is_creator_only_editable": {
"type": "boolean",
"description": "Whether the dashboard is editable only by the creator."
}
},
"required": [
"is_creator_only_editable"
]
},
"DashboardWidget": {
"type": "object",
"description": "Allows parameters to be defined in snake case, but passed as camel case.\n\nErrors are output in camel case.",
Expand Down

0 comments on commit 9c03670

Please sign in to comment.