# Get all classifier frameworks Endpoint: GET /classifiers/frameworks Version: 5.1.43 Security: api_key ## Query parameters: - `include_schema` (boolean) Whether to include each classifier framework's JSON schema in the response. - `page_number` (integer) The page number for which to get classifier frameworks. This will default to the first page if excluded - `page_size` (integer) The maximum number of objects to return. This will default to the DefaultApiPageSize setting if not provided ## Response 200 fields (application/json): - `_pageInfo` (object) - `_pageInfo.numberOnPage` (integer) The number of items on this page. This should always match the page size unless it is the last page. - `_pageInfo.total` (integer) The total number of items - `responseList` (array) Example: [{"frameworkId":1,"frameworkName":"REGEX","description":"This is a regex classifier framework."}] - `responseList.frameworkId` (integer) The id of the classifier framework installed using Plugin API. Example: 1 - `responseList.frameworkName` (string) The name of the classifier framework installed using Plugin API. Example: "REGEX" - `responseList.description` (string) The description of the classifier framework Example: "This is a regex classifier framework." - `responseList.classifierSchema` (object) The JSON schema of classifierExtension used by this framework ## Response 400 fields ## Response 403 fields