Response containing a list of ContentRepositories
| name | data type | constraints | description | 
|---|---|---|---|
| items | array of ContentRepositoryModel | ContentRepositories in the list | |
| messages | array of Message | Messages contained in the response (which should be shown to the user) | |
| hasMoreItems | boolean | required boolean | True if more items are available to get (if paging was used) | 
| responseInfo | ResponseInfo | ||
| numItems | number | required int | Get total number of items available | 
| perms | map of array of Permission | User permissions on the returned items, if applicable and requested | 
Example
{
  "items" : [ {
    "globalId" : "0737.82ae915c-059c-11f0-ae44-482ae36fb1c5",
    "id" : 12345,
    "name" : "...",
    "crType" : "mccr",
    "dbType" : "...",
    "username" : "...",
    "usernameProperty" : "...",
    "password" : "...",
    "passwordProperty" : "...",
    "http2" : true,
    "passwordType" : "property",
    "url" : "...",
    "urlProperty" : "...",
    "basepath" : "...",
    "basepathProperty" : "...",
    "instantPublishing" : true,
    "languageInformation" : true,
    "permissionInformation" : true,
    "permissionProperty" : "...",
    "defaultPermission" : "...",
    "diffDelete" : true,
    "elasticsearch" : {
      "page" : { },
      "folder" : { },
      "file" : { }
    },
    "projectPerNode" : true,
    "version" : "...",
    "checkDate" : 12345,
    "checkStatus" : "unchecked",
    "checkResult" : "...",
    "statusDate" : 12345,
    "dataStatus" : "queued",
    "dataCheckResult" : "...",
    "noFoldersIndex" : true,
    "noFilesIndex" : true,
    "noPagesIndex" : true,
    "noFormsIndex" : true
  }, {
    "globalId" : "0737.34f95a21-0304-11f0-ae44-482ae36fb1c5",
    "id" : 12345,
    "name" : "...",
    "crType" : "mccr",
    "dbType" : "...",
    "username" : "...",
    "usernameProperty" : "...",
    "password" : "...",
    "passwordProperty" : "...",
    "http2" : true,
    "passwordType" : "value",
    "url" : "...",
    "urlProperty" : "...",
    "basepath" : "...",
    "basepathProperty" : "...",
    "instantPublishing" : true,
    "languageInformation" : true,
    "permissionInformation" : true,
    "permissionProperty" : "...",
    "defaultPermission" : "...",
    "diffDelete" : true,
    "elasticsearch" : {
      "page" : { },
      "folder" : { },
      "file" : { }
    },
    "projectPerNode" : true,
    "version" : "...",
    "checkDate" : 12345,
    "checkStatus" : "running",
    "checkResult" : "...",
    "statusDate" : 12345,
    "dataStatus" : "unchecked",
    "dataCheckResult" : "...",
    "noFoldersIndex" : true,
    "noFilesIndex" : true,
    "noPagesIndex" : true,
    "noFormsIndex" : true
  } ],
  "messages" : [ { }, { } ],
  "hasMoreItems" : true,
  "responseInfo" : {
    "responseCode" : "OK",
    "responseMessage" : "...",
    "property" : "..."
  },
  "numItems" : 12345,
  "perms" : {
    "property1" : [ "update", "linkoverview" ],
    "property2" : [ "setperm", "linkoverview" ]
  }
}