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

Revert "fix: Update storage policy assignments (#394)" #395

Merged
merged 1 commit into from
Jan 17, 2024
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
57 changes: 14 additions & 43 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": "2.0.0",
"x-box-commit-hash": "1eb7bcd21e"
"x-box-commit-hash": "d6b3a4d2fb"
},
"servers": [
{
Expand Down Expand Up @@ -24467,16 +24467,6 @@
"$ref": "#/components/schemas/SignRequestCreateSigner"
},
"description": "Array of signers for the sign request. 35 is the max number of signers permitted."
},
"parent_folder": {
"allOf": [
{
"$ref": "#/components/schemas/Folder--Mini"
},
{
"description": "The destination folder to place final, signed document and signing\nlog. Only `ID` and `type` fields are required. The root folder,\nfolder ID `0`, cannot be used and can also not be null.\n\nWhen this value is not passed in when the signature request, then\nwe will use a default folder which is either the parent folder of\nthe first source file in the payload if we have the permission to\nupload to that folder or a folder called \"My Sign Requests\"."
}
]
}
}
}
Expand Down Expand Up @@ -32258,10 +32248,6 @@
],
"x-box-variant": "mini",
"description": "A mini description of a Storage Policy object",
"required": [
"id",
"type"
],
"properties": {
"id": {
"type": "string",
Expand All @@ -32284,24 +32270,7 @@
"x-box-resource-id": "storage_policy_assignment",
"x-box-tag": "storage_policy_assignments",
"description": "The assignment of a storage policy to a user or enterprise",
"required": [
"id",
"type"
],
"properties": {
"id": {
"type": "string",
"description": "The unique identifier for a storage policy assignment.",
"example": "ZW50ZXJwcmlzZV8xMjM0NTY3ODkw"
},
"type": {
"type": "string",
"description": "`storage_policy_assignment`",
"example": "storage_policy_assignment",
"enum": [
"storage_policy_assignment"
]
},
"storage_policy": {
"allOf": [
{
Expand Down Expand Up @@ -36429,6 +36398,9 @@
],
"x-box-variant": "base",
"description": "A request to create a sign request object",
"required": [
"parent_folder"
],
"properties": {
"is_document_preparation_needed": {
"type": "boolean",
Expand Down Expand Up @@ -36470,6 +36442,16 @@
"description": "Reminds signers to sign a document on day 3, 8, 13 and 18. Reminders are only sent to outstanding signers.",
"example": true
},
"parent_folder": {
"allOf": [
{
"$ref": "#/components/schemas/Folder--Mini"
},
{
"description": "The destination folder to place final, signed document and signing\nlog. Only `ID` and `type` fields are required. The root folder,\nfolder ID `0`, cannot be used."
}
]
},
"name": {
"type": "string",
"example": "name",
Expand Down Expand Up @@ -36618,17 +36600,6 @@
"example": "2021-04-26T08:12:13.982Z",
"description": "Uses `days_valid` to calculate the date and time, in GMT, the sign request will expire if unsigned.",
"nullable": true
},
"parent_folder": {
"nullable": false,
"allOf": [
{
"$ref": "#/components/schemas/Folder--Mini"
},
{
"description": "The destination folder to place final, signed document and signing\nlog.\n\nWhen this value was not passed in when the signature request was \ncreated, then we will use a default folder which is either the parent\nfolder of the first source file in the payload if we have the permission\nto upload to that folder or a folder called \"My Sign Requests\"."
}
]
}
}
}
Expand Down
Loading