-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbia_mifa_models.proto
77 lines (77 loc) · 1.95 KB
/
bia_mifa_models.proto
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
// A set of annotations for an AI-ready dataset
message Annotations
{
string annotationOverview = 0
string annotationMethod = 0
string annotationCriteria = 0
string annotationCoverage = 0
string annotationConfidenceLevel = 0
repeated author authors = 0
repeated fileLevelMetadata fileMetadata = 0
}
// Information about the authors
message Author
{
string authorFirstName = 0
string authorLastName = 0
string email = 0
uriorcurie orcidId = 0
repeated string role = 0
repeated organisationInfo organisation = 0
}
// metadata atributes that must be detailed at the file level
message FileLevelMetadata
{
string annotationId = 0
repeated annotationType annotationType = 0
string sourceImageId = 0
string transformations = 0
string spatialInformation = 0
datetime annotationCreationTime = 0
}
// Information about grant ID and funding body that funded the study
message GrantReference
{
string grantId = 0
string funder = 0
}
// Information about the organisation the author is affiliated with
message OrganisationInfo
{
string organisationName = 0
string address = 0
uriorcurie rorId = 0
}
// Information about any publications associated with the dataset
message Publications
{
string publicationTitle = 0
string publicationAuthors = 0
uriorcurie publicationDoi = 0
string publicationYear = 0
uriorcurie pubmedId = 0
}
// General information about the study
message Study
{
string title = 0
string description = 0
repeated string keywords = 0
licenseType license = 0
repeated uriorcurie aiModelsTrained = 0
string acknowledgements = 0
string fundingStatement = 0
repeated publications publications = 0
repeated author authors = 0
repeated uriorcurie linkUrl = 0
repeated string linkDescription = 0
repeated grantReference grants = 0
}
// Information about the dataset version
message Version
{
string version = 0
datetime timestamp = 0
string changes = 0
uriorcurie previousVersion = 0
}