Outline · Example Payload

Documentsarchived

Documents

Documentsarchived 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": "documentsArchived",
  "path": "/documents.archived",
  "method": "POST",
  "summary": "List all archived documents",
  "tags": [
    "Documents"
  ],
  "requestSchema": {
    "allOf": [
      {
        "$ref": "#/components/schemas/Pagination"
      },
      {
        "$ref": "#/components/schemas/Sorting"
      },
      {
        "type": "object",
        "properties": {
          "collectionId": {
            "type": "string",
            "format": "uuid",
            "description": "Optionally filter to a specific collection"
          }
        }
      }
    ]
  }
}