page-listing.ts 942 B

12345678910111213141516171819202122232425262728293031323334
  1. /**
  2. * @swagger
  3. *
  4. * components:
  5. * schemas:
  6. * PageForTreeItem:
  7. * description: Page
  8. * type: object
  9. * properties:
  10. * _id:
  11. * $ref: '#/components/schemas/ObjectId'
  12. * path:
  13. * $ref: '#/components/schemas/PagePath'
  14. * parent:
  15. * $ref: '#/components/schemas/PagePath'
  16. * grant:
  17. * $ref: '#/components/schemas/PageGrant'
  18. * lastUpdateUser:
  19. * $ref: '#/components/schemas/User'
  20. * descendantCount:
  21. * type: number
  22. * isEmpty:
  23. * type: boolean
  24. * wip:
  25. * type: boolean
  26. * createdAt:
  27. * type: string
  28. * description: date created at
  29. * example: 2010-01-01T00:00:00.000Z
  30. * updatedAt:
  31. * type: string
  32. * description: date updated at
  33. * example: 2010-01-01T00:00:00.000Z
  34. */