Profile API returns category `false` but documentation suggests it should be `true`

Profile API returns category `false` but documentation suggests it should be `true`

Hello everybody.

First of all, I want to say that the interface for previewing posts in this forum is pretty bad. The way to return to Edit mode is that arrow on the top left, which I didn't know whether it was for "back to edit" or "back to previous page". Also, the arrow on the left is to publish the post, but the icon is just an arrow, that would better suit an "upload" action than a publish action. 




Ok, now to my question. I am using this endpoint: https://www.zohoapis.com/crm/v2/settings/profiles

And this is the API documentation for it https://www.zoho.com/crm/developer/docs/api/v2/get-profiles.html

This is what it says about the Category:
`Represents if the profile is a default profile. The value is true only for "Standard" and "Administrator" profiles.`

However, the response I get is the following: 

`{"profiles":[{"display_label":"Administrator","created_time":null,"modified_time":null,"name":"Administrator","modified_by":null,"description":"This profile will have all the permissions. Users with Administrator profile will be able to view and manage all the data within the organization account by default.","id":"5010327000000026011","category":false,"created_by":null},{"display_label":"Standard","created_time":null,"modified_time":null,"name":"Standard","modified_by":null,"description":"This profile will have all the permissions except administrative privileges.","id":"5010327000000026014","category":false,"created_by":null}]}`

As you can see, both categories "Administrator" and "Standard" have a `category` field set to False. 

Is there something I'm missing here, or is API wrong? Or the documentation?