Views
The platform6.views
service allows to edit the views.
List the views¶
This resource returns the list of the views.
Parameters¶
Headers of the request
Header’s key | Description | Value |
---|---|---|
platform6.request.action |
The action to perform (required) | list |
Headers of the response
Header’s key | Description |
---|---|
platform6.response.value |
The list of views |
Example¶
def cm = [ headers: [ 'platform6.request.action': 'list' ] ] print service.request('platform6.views', cm).headers['platform6.response.value']
The response will be:
[ { "name": "Logging Event", "descriptionMap": { "EN": "Logging Event", "FR": "Événement de log" }, "tags": { "": "" }, "conceptName": "logging_event", "dataModel": "", "dataCluster": ".work", "reprocessRouteUri": "", "keys": [ { "name": "ID", "descriptionMap": { "EN": "Id", "FR": "Identifiant" }, "xPath": "logging_event/id", "xPaths": null } ], "viewables": [ { "name": "Creation Date", "descriptionMap": { "EN": "Creation Date", "FR": "Date de Création" }, "xPath": "logging_event/time", "xPaths": null, "type": "Date(yyyy'-'MM'-'dd' 'HH:mm:ss.S z)", "defaultValue": null, "choiceValues": null, "displayChoiceValues": null, "typeAttributes": null, "choiceAttributes": null, "displayChoiceAttributes": null }, { "name": "ID", "descriptionMap": { "EN": "ID", "FR": "Identifiant" }, "xPath": "logging_event/id", "xPaths": null, "type": "String", "defaultValue": null, "choiceValues": null, "displayChoiceValues": null, "typeAttributes": null, "choiceAttributes": null, "displayChoiceAttributes": null }, { "name": "Logger", "descriptionMap": { "EN": "Logger", "FR": "logger" }, "xPath": "logging_event/logger", "xPaths": null, "type": "String", "defaultValue": null, "choiceValues": null, "displayChoiceValues": null, "typeAttributes": null, "choiceAttributes": null, "displayChoiceAttributes": null }, { "name": "Message", "descriptionMap": { "EN": "Message", "FR": "Message" }, "xPath": "logging_event/message", "xPaths": null, "type": "String", "defaultValue": null, "choiceValues": null, "displayChoiceValues": null, "typeAttributes": null, "choiceAttributes": null, "displayChoiceAttributes": null }, { "name": "Level", "descriptionMap": { "EN": "Level", "FR": "Level" }, "xPath": "logging_event/level", "xPaths": null, "type": "String", "defaultValue": null, "choiceValues": null, "displayChoiceValues": null, "typeAttributes": null, "choiceAttributes": null, "displayChoiceAttributes": null } ], "searchables": [ { "name": "Creation Date", "descriptionMap": { "EN": "Creation Date", "FR": "Date de Création" }, "xPath": "logging_event/time", "xPaths": null, "type": "RangeOfDates(yyyy'-'MM'-'dd' 'HH:mm:ss.S z)", "defaultValue": null, "choiceValues": null, "displayChoiceValues": null, "typeAttributes": {}, "choiceAttributes": {}, "displayChoiceAttributes": {} }, { "name": "ID", "descriptionMap": { "EN": "ID", "FR": "Identifiant" }, "xPath": "logging_event/id", "xPaths": null, "type": "StringContains", "defaultValue": null, "choiceValues": null, "displayChoiceValues": null, "typeAttributes": {}, "choiceAttributes": {}, "displayChoiceAttributes": {} }, { "name": "Logger", "descriptionMap": { "EN": "Logger", "FR": "logger" }, "xPath": "logging_event/logger", "xPaths": null, "type": "StringContains", "defaultValue": null, "choiceValues": null, "displayChoiceValues": null, "typeAttributes": {}, "choiceAttributes": {}, "displayChoiceAttributes": {} }, { "name": "Message", "descriptionMap": { "EN": "Message", "FR": "Message" }, "xPath": "logging_event/message", "xPaths": null, "type": "StringContains", "defaultValue": null, "choiceValues": null, "displayChoiceValues": null, "typeAttributes": {}, "choiceAttributes": {}, "displayChoiceAttributes": {} }, { "name": "AnyField", "descriptionMap": { "EN": "Contains the words", "FR": "Contient les mots" }, "xPath": "logging_event", "xPaths": null, "type": "StringContains", "defaultValue": null, "choiceValues": null, "displayChoiceValues": null, "typeAttributes": {}, "choiceAttributes": {}, "displayChoiceAttributes": {} } ] } ]