ResponseData

ResponseData

선택한 내보내기(export)의 다운로드 위치를 담는 스키마예요. 대용량 내보내기는 여러 파일로 나뉠 수 있어요.

출처: 문서

본문

선택한 내보내기(export)의 다운로드 위치를 담는 스키마예요. 대용량 내보내기는 여러 파일로 나뉠 수 있어요.

실제 JSON 스키마는 다음과 같아요.

{
  "description": "Download locations for the selected export. Large exports can span multiple files.",
  "properties": {
    "data": {
      "description": "Download URLs and file sizes for the export.",
      "items": {
        "$ref": "#/components/schemas/ResponseDataFile"
      },
      "type": "array"
    }
  },
  "type": "object"
}

더 알아보기