Root Insurance · Schema
https-adapter
InsuranceAuto InsuranceTelematicsEmbedded InsurancePolicy AdministrationClaimsUsage-Based InsuranceInsurTech
Properties
| Name | Type | Description |
|---|---|---|
| type | string | The type of adapter. In this case, `https`. |
| url | string | The HTTPS URL to send the export file to. |
| headers | string | The HTTP headers for the request. |
| batch_size | integer | The number of entities to include per request, if streaming is disabled. Defaults to `10000` if not provided. |
| stream_request | boolean | Indicates whether the request should be batched (`false`) or streamed in one request (`true`). |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "https-adapter",
"type": "object",
"required": [
"type",
"url"
],
"properties": {
"type": {
"type": "string",
"description": "The type of adapter. In this case, `https`."
},
"url": {
"type": "string",
"description": "The HTTPS URL to send the export file to."
},
"headers": {
"type": "string",
"description": "The HTTP headers for the request."
},
"batch_size": {
"type": "integer",
"description": "The number of entities to include per request, if streaming is disabled. Defaults to `10000` if not provided."
},
"stream_request": {
"type": "boolean",
"description": "Indicates whether the request should be batched (`false`) or streamed in one request (`true`)."
}
}
}