Response for request to render a page
| name | data type | constraints | description |
|---|---|---|---|
| content | string | Get the content | |
| properties | map of string | Get the properties | |
| array of Tag | Get the tags | ||
| metaeditables | array of MetaEditable | Get the meta editables | |
| messages | array of Message | Messages contained in the response (which should be shown to the user) | |
| time | number | Rrender time in milliseconds | |
| responseInfo | ResponseInfo | ||
| inBackground | boolean | required boolean | Whether the job was pushed into the background. |
| inheritedContent | string | Get inheritedContent | |
| inheritedProperties | map of string | Get inheritedProperties |
Example
{
"content" : "...",
"properties" : {
"property1" : "...",
"property2" : "..."
},
"tags" : [ {
"element" : "...",
"tagname" : "...",
"onlyeditables" : true,
"editables" : [ {
"element" : "...",
"partname" : "...",
"readonly" : true
}, {
"element" : "...",
"partname" : "...",
"readonly" : true
} ]
}, {
"element" : "...",
"tagname" : "...",
"onlyeditables" : true,
"editables" : [ {
"element" : "...",
"partname" : "...",
"readonly" : true
}, {
"element" : "...",
"partname" : "...",
"readonly" : true
} ]
} ],
"metaeditables" : [ {
"element" : "...",
"metaproperty" : "..."
}, {
"element" : "...",
"metaproperty" : "..."
} ],
"messages" : [ { }, { } ],
"time" : 12345,
"responseInfo" : {
"responseCode" : "OK",
"responseMessage" : "...",
"property" : "..."
},
"inBackground" : true,
"inheritedContent" : "...",
"inheritedProperties" : {
"property1" : "...",
"property2" : "..."
}
}