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