-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsnippets.json
81 lines (81 loc) · 3.42 KB
/
snippets.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"Datasets General Information": {
"prefix": ["Dataset:"],
"body": [
"Dataset: YourDatasetId",
"\tGeneral information: ",
"\t\tTitle: '$1' ",
"\t\tUnique-identifier: uniqueId ",
"\t\tVersion: yourId $2 ",
"\t\tDescription: ",
"\t\t\tPurpose: \"$11\" ",
"\t\t\tTasks: \"$8\" ",
"\t\t\tGaps: \"$9\" ",
"\t\t\tCitation: '$4' ",
"\t\tArea: Dataset_Area",
"\t\tTags: Classification_Tags",
"\t\tAuthoring:",
"\t\t\tAuthors:",
"\t\t\t\tName Author1Name email \"\"",
"\t\t\t\tName Author2Name\temail \"\"",
"\t\t\tFounders:",
"\t\t\t\tName Founder1Name type mixed grantor \"EEUU\" grantId: miID",
"\t\t\t\tLicense Information: \"\" ",
"\t\t\tMaintenance:",
"\t\t\t\tMaintainer:",
"\t\t\t\t\tName Mantainer1Name email \"\"",
"\t\t\t\tErratum? \"\" ",
"\t\t\t\tContribution guides: \"\"",
"",
"\tComposition:",
"\t\t Description: \"General Description of the data\"",
"\t\t Total number of instances: 0 ",
"\t\t Instances: ",
"\t\t\t\t Instance: Instance1Id ",
"\t\t\t\t\t Description: \"Instance Description\"",
"\t\t\t\t\t Type: Record_Data",
"\t\t\t\t\t Number of attributes: 00",
"\t\t\t\t\t Completness: 100",
"\t\t\t\t\t Associated Labels: \"labelId\"",
"\t\t\t\t\t Composition:",
"\t\t\t\t\t\t attribute: attribute1Id",
"\t\t\t\t\t\t\t description: \"Describre the attribute \" ",
"\t\t\t\t\t\t\t // completness: 100 ",
"\t\t\t\t\t\t\t // count: 100 ",
"\t\t\t\t\t\t\t // ofType: 100 ",
"\t\t\t\t\t\t attribute: attribute2Id",
"\t\t\t\t\t\t\t description: \"Describre the attribute \" ",
"\t\t\t\t\t\t\t // completness: 100 ",
"\t\t\t\t\t\t\t // count: 100 ",
"\t\t\t\t\t\t\t // ofType: 100 ",
"\t\t\t\t Instance: Instance2Id ",
"\t\t\t\t\t Description: \"Instance Description\"",
"\t\t\t\t\t Type: Record_Data",
"\t\t\t\t\t Composition:",
"\t\t\t\t\t\t attribute: attribute3Id",
"\t\t\t\t\t\t\t description: \"Describre the attribute \" ",
"\t\t\t\t\t\t\t // completness: 100 ",
"\t\t\t\t\t\t\t // count: 100 ",
"\t\t\t\t\t\t\t // ofType: 100 ",
"\t Social Concerns:",
"\t\t // All the social stuff ",
"\t Data Provenance:",
"\t\t Curation Rationale: \"the rationale of curation\"",
"\t\t // All the gathering and annotation stuff "
],
"description": "Dataset's general information scaffold"
},
"Instance": {
"prefix": "Instance:",
"body":[
"Instance: $1InstanceId",
"\tdescription \"$2Instance Description\"",
"\ttype ${3|images,raw,features,people|}",
"\ttotal number 000",
"\twithAttributes:",
"\t\t attribute attribute1Id $5 ofType ${6|string,int,bool|} description: \"$7Describre the attribute \"",
"\t\t attribute attribute2Id ofType ${6|string,int,bool|} description: \"Describre the attribute\""
],
"description":"Instance scaffold"
}
}