본문으로 건너뛰기

Text

[report 영역] Text는 조회 데이터의 Description을 정의합니다.

필드타입필수설명기본값
sectionstringY데이터가 표출되는 영역
report
contentsstringY조회 데이터의 Description
(html, Markdown 형식으로 작성)
configobjectY기본 설정
config.typestringYtype 구분
text
config.optionobjectN세부 설정
config.option.typestringN작성한 텍스트 타입
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"
}
}
}