Variable: CustomContentSortOrderSchema
ts
const CustomContentSortOrderSchema: ZodCustom<
| "id"
| "title"
| string & object
| "created-date"
| "-created-date"
| "modified-date"
| "-modified-date"
| "-id"
| "-title",
| "id"
| "title"
| string & object
| "created-date"
| "-created-date"
| "modified-date"
| "-modified-date"
| "-id"
| "-title">;Defined in: src/v2/models/customContentSortOrder.ts:8
The sort fields for custom content. The default sort direction is ascending. To sort in descending order, append a - character before the sort field. For example, fieldName or -fieldName.