Outline · Example Payload

Fileoperationslist

FileOperations

Fileoperationslist is an example object payload from Outline, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdpathmethodsummarytagsrequestSchema

Example Payload

Raw ↑
{
  "operationId": "fileOperationsList",
  "path": "/fileOperations.list",
  "method": "POST",
  "summary": "List all file operations",
  "tags": [
    "FileOperations"
  ],
  "requestSchema": {
    "allOf": [
      {
        "$ref": "#/components/schemas/Pagination"
      },
      {
        "$ref": "#/components/schemas/Sorting"
      },
      {
        "type": "object",
        "properties": {
          "type": {
            "type": "string",
            "description": "The type of fileOperation",
            "example": "export",
            "enum": [
              "export",
              "import"
            ]
          }
        },
        "required": [
          "type"
        ]
      }
    ]
  }
}