Text
[report 영역] Text는 조회 데이터의 Description을 정의합니다.
필드 | 타입 | 필수 | 설명 | 기본값 |
---|---|---|---|---|
section | string | Y | 데이터가 표출되는 영역 report | |
contents | string | Y | 조회 데이터의 Description (html, Markdown 형식으로 작성) | |
config | object | Y | 기본 설정 | |
config.type | string | Y | type 구분 text | |
config.option | object | N | 세부 설정 | |
config.option.type | string | N | 작성한 텍스트 타입 html , markdown | markdown |
Protocol 구조
{
section:"report",
contents: string,
config:{
type: string
option:{
type:'html'|'markdown'
}
}
}
Example
{
"section": "report",
"contents": "<div style='color:blue;'>여기는 타이틀 아래의 내용에 HTML로 입력할 수 있습니다.</div>",
"config": {
"type": "text",
"option": {
"type": "html"
}
}
}