Outline · Schema

Sorting

Knowledge BaseWikiDocumentsCollaborationOpen SourceTeam

Properties

Name Type Description
sort string
direction string
View JSON Schema on GitHub

JSON Schema

sorting.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "Sorting",
  "type": "object",
  "properties": {
    "sort": {
      "type": "string",
      "example": "updatedAt"
    },
    "direction": {
      "type": "string",
      "example": "DESC",
      "enum": [
        "ASC",
        "DESC"
      ]
    }
  }
}