type: object
properties:
  id:
    type: string
  name:
    type: string
  aclObject:
    description: The ACL object ID of the entity.
    type: string
  lastUpdatedTime:
    type: string
  version:
    type: number
  type:
    type: string
    enum:
      - CSV
      - DATABASE
  state:
    type: string
    enum:
      - ENABLED
      - DISABLED
  links:
    type: object
    properties:
      self:
        type: string
      acl:
        type: string
    required:
      - self
      - acl
required:
  - id
  - name
  - lastUpdatedTime
  - version
  - type
  - state
  - links
