changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "The one-time upload link and the limits it will be judged against.",
+ "properties": {
+ "expires_at": {
+ "description": "ISO 8601 expiry instant",
+ "type": "string"
+ },
+ "expires_in_seconds": {
+ "description": "Seconds until the link expires, measured server-side",
+ "type": "integer"
+ },
+ "max_file_size_bytes": {
+ "description": "Largest single file this upload will accept",
+ "type": "integer"
+ },
+ "max_files_per_upload": {
+ "description": "Most files one upload request may carry",
+ "type": "integer"
+ },
+ "note_id": {
+ "description": "Note the files will attach to",
+ "type": "integer"
+ },
+ "note_title": {
+ "description": "Title of that note",
+ "type": "string"
+ },
+ "remaining_bytes": {
+ "description": "Bytes left in the Free allowance; absent when only the per-file cap applies",
+ "type": "integer"
+ },
+ "remaining_files": {
+ "description": "Files left in the Free allowance; absent when only the per-file cap applies",
+ "type": "integer"
+ },
+ "token": {
+ "description": "Pass to files-check_upload to confirm completion",
+ "type": "string"
+ },
+ "upload_url": {
+ "description": "One-time upload URL to share with the user",
+ "type": "string"
+ }
+ },
+ "required": [
+ "upload_url",
+ "token",
+ "expires_at",
+ "expires_in_seconds",
+ "note_id",
+ "note_title",
+ "max_file_size_bytes",
+ "max_files_per_upload"
+ ],
+ "type": "object"
+}