The data_entry
interface allows you to collect data using a form. It's ideal for many data entry, classification or research purposes.
- Markdown description containing images, links or instructions. Per-task and/or universal description.
- Create a custom
surveyjs
JSON file. This tool from surveyjs.io is very helpful. To manually create the object, reference this specification. - PDF URLs, Image URLs, External Site URL or markdown description for each task.
{
"interface": {
"type": "data_entry",
"description"?: MarkdownDescription,
"surveyjs": SurveyJSObject
},
"samples": [
// These are all different types of task data that are acceptable
{ pdfUrl: "https://..." },
{ markdown: "## Some Content" },
{ imageUrl: "https://..." },
{ url: "https://" },
{ surveyjs: SurveyJSObject, markdown: "..." },
{ preloadedAnnotation: { "FieldName": "..." } }
],
"examples": [
{
pdfUrl: "https://...",
annotation: { "FieldName": "..." }
}
]
}
The annotation of data entry tasks is given by SurveyJS. Check the "Test Survey" tab using the SurveyJS tool.