Project

General

Profile

1
{
2
  "type" : "record",
3
  "name" : "ProjectToProjectStatistics",
4
  "namespace" : "eu.dnetlib.iis.statistics.schemas",
5
  "fields" : [ {
6
    "name" : "projectId",
7
    "type" : "string"
8
  }, {
9
    "name" : "statistics",
10
    "type" : {
11
      "type" : "record",
12
      "name" : "CommonBasicStatistics",
13
      "fields" : [ {
14
        "name" : "allPapersStatistics",
15
        "type" : {
16
          "type" : "record",
17
          "name" : "BasicStatistics",
18
          "fields" : [ {
19
            "name" : "coreStatistics",
20
            "type" : {
21
              "type" : "record",
22
              "name" : "CoreStatistics",
23
              "fields" : [ {
24
                "name" : "numberOfCitations",
25
                "type" : "int"
26
              }, {
27
                "name" : "numberOfCitationsPerYear",
28
                "type" : {
29
                  "type" : "map",
30
                  "values" : "int"
31
                }
32
              } ]
33
            }
34
          }, {
35
            "name" : "averageNumberOfCitationsPerPaper",
36
            "type" : "float"
37
          }, {
38
            "name" : "numberOfPapers",
39
            "type" : "int"
40
          }, {
41
            "name" : "numberOfCitablePapers",
42
            "type" : "int"
43
          }, {
44
            "name" : "numberOfPapersCitedAtLeastXTimes",
45
            "type" : {
46
              "type" : "map",
47
              "values" : "int"
48
            }
49
          } ]
50
        }
51
      }, {
52
        "name" : "publishedPapersStatistics",
53
        "type" : "BasicStatistics"
54
      } ]
55
    }
56
  } ]
57
}
(3-3/3)