md`## data repository
A temporary repository is located on one of our development hosts:
https://nl4.dydra.com/fbfpt/kombuchadata/@query
Its view catalog includes for now just
- \`batch_import\`, which controls a "jarql" import
- \`count\`, which does just that
the import process is embodied in a short shell script
\`\`\`
#!/bin/bash
# perform json import
STORE_TOKEN=cat ~/.dydra/nl4.dydra.com.token
curl -X PUT -u "\${STORE_TOKEN}:" \\
--data-binary @kombuchadata.json \\
-H "Content-Type:application/json" \\
"https://nl4.dydra.com/fbfpt/kombuchadata/batch_import"
\`\`\`
`