Properties
| Name | Type | Description |
|---|---|---|
| author | string | Author of message |
| content | object | |
| created | object | |
| id | integer | Message ID |
| is_follow_on_request | boolean | Whether the message is a follow-on request |
| updated | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/cloudforce-one_request-message-item",
"title": "Request Message Item",
"properties": {
"author": {
"description": "Author of message",
"example": "[email protected]",
"type": "string"
},
"content": {
"$ref": "#/components/schemas/cloudforce-one_message-content"
},
"created": {
"allOf": [
{
"$ref": "#/components/schemas/cloudforce-one_time"
},
{
"description": "Message creation time"
},
{
"example": "2022-01-01T00:00:00Z"
}
]
},
"id": {
"description": "Message ID",
"type": "integer"
},
"is_follow_on_request": {
"description": "Whether the message is a follow-on request",
"type": "boolean"
},
"updated": {
"allOf": [
{
"$ref": "#/components/schemas/cloudforce-one_time"
},
{
"description": "Message last updated time"
},
{
"example": "2022-01-01T00:00:00Z"
}
]
}
},
"required": [
"id",
"updated",
"content",
"author",
"is_follow_on_request"
],
"type": "object"
}