GET metadata/project/components
?
GET metadata/buckets/in.c-ex-salesforce-main/components
{
"ex-salesforce": [
| # | Name | Note | ☑ | Example |
|---|---|---|---|---|
| 1 | Application name | Do not use the word extractor or writer in your app. | ☐ | iTunes |
| 2 | Application type | One of extractor, writer, application |
☐ | extractor |
| 3 | Application icon URL | 32px and 64px sizes on a public URL | ☐ | https://d3iz2gfan5zufq.cloudfront.net/images/cloud-services/docker-demo-32-1.png |
| 4 | Vendor full name | Will be visible to end-users | ☐ | Company LTD |
| 5 | Vendor address | Will be visible to end-users | ☐ | 1 Connected Way, BigTown, CS |
| 6 | Email address | Will be visible to end-users and we will send error notifications to this address | ☐ | info@company.com |
| library(data.table) | |
| data <- data.table(id = c("10", "20"), str = c("abcd", "efghijkl")); | |
| substringer <- function(string, splitLength = 10) { | |
| start <- 1 | |
| end <- splitLength | |
| out <- c() | |
| while (start < nchar(string)) { | |
| out <- c(out, substr(string,start,end)) | |
| end <- end + splitLength |