enregistrement
Modèle de données
Cliquez pour déplier Cliquez pour replier
Schéma JSON
L'objet JSON ci dessous est une description standardisée du modèle de votre jeu de données. Pour en savoir plus sur JSON schema.
{
- "title":"shanghai-world-university-ranking@public",
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/shanghai-world-university-ranking@public"
}
] - "definitions":{
- "shanghai-world-university-ranking@public":,{
- "properties":{
- "records":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/shanghai-world-university-ranking@public_records"
}
}
} - "records":
} - "properties":
- "geoJSON":,{
- "title":"Geo JSON object",
- "description":"Schema for a Geo JSON object",
- "type":"object",
- "required":,[
- "type"
] - "properties":,{
- "crs":,{
- "$ref":"#/definitions/crs"
} - "bbox":{
- "$ref":"#/definitions/bbox"
}
} - "crs":
- "oneOf":[
- ,{
- "$ref":"#/definitions/geometry"
} - ,{
- "$ref":"#/definitions/geometryCollection"
} - ,{
- "$ref":"#/definitions/feature"
} - {
- "$ref":"#/definitions/featureCollection"
}
]
} - "bbox":,{
- "description":"A bounding box as defined by GeoJSON",
- "type":"array",
- "items":{
- "type":"number"
}
} - "crs":,{
- "title":"crs",
- "description":"a Coordinate Reference System object",
- "type":,[
- "object",
- "null"
] - "required":,[
- "type",
- "properties"
] - "properties":,{
- "type":,{
- "type":"string"
} - "properties":{
- "type":"object"
}
} - "type":
- "additionalProperties":false,
- "oneOf":[
- ,{
- "$ref":"#/definitions/namedCrs"
} - {
- "$ref":"#/definitions/linkedCrs"
}
]
} - "namedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "name"
]
} - "enum":
- "properties":{
- "required":,[
- "name"
] - "additionalProperties":false,
- "properties":{
- "name":{
- "type":"string"
}
} - "name":
} - "required":
} - "type":
} - "properties":
- "linkedObject":,{
- "type":"object",
- "required":,[
- "href"
] - "properties":{
- "href":,{
- "type":"string",
- "format":"uri"
} - "type":{
- "type":"string",
- "description":"Suggested values: proj4, ogjwkt, esriwkt"
}
} - "href":
} - "linkedCrs":,{
- "properties":{
- "type":,{
- "enum":[
- "link"
]
} - "enum":
- "properties":{
- "$ref":"#/definitions/linkedObject"
}
} - "type":
} - "properties":
- "geometryCollection":,{
- "title":"GeometryCollection",
- "description":"A collection of geometry objects",
- "required":,[
- "geometries"
] - "properties":{
- "type":,{
- "enum":[
- "GeometryCollection"
]
} - "enum":
- "geometries":{
- "type":"array",
- "items":{
- "$ref":"http://json-schema.org/geojson/geometry.json#"
}
}
} - "type":
} - "feature":,{
- "title":"Feature",
- "description":"A Geo JSON feature object",
- "required":,[
- "geometry",
- "properties"
] - "properties":{
- "type":,{
- "enum":[
- "Feature"
]
} - "enum":
- "geometry":,{
- "oneOf":[
- ,{
- "type":"null"
} - {
- "$ref":"#/definitions/geometry"
}
]
} - "oneOf":
- "properties":,{
- "type":[
- "object",
- "null"
]
} - "type":
- "id":{}
} - "type":
} - "featureCollection":,{
- "title":"FeatureCollection",
- "description":"A Geo JSON feature collection",
- "required":,[
- "features"
] - "properties":{
- "type":,{
- "enum":[
- "FeatureCollection"
]
} - "enum":
- "features":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/feature"
}
}
} - "type":
} - "geometry":,{
- "title":"geometry",
- "description":"One geometry as defined by GeoJSON",
- "type":"object",
- "required":,[
- "type",
- "coordinates"
] - "oneOf":,[
- ,{
- "title":"Point",
- "properties":{
- "type":,{
- "enum":[
- "Point"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/position"
}
} - "type":
} - ,{
- "title":"MultiPoint",
- "properties":{
- "type":,{
- "enum":[
- "MultiPoint"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/positionArray"
}
} - "type":
} - ,{
- "title":"LineString",
- "properties":{
- "type":,{
- "enum":[
- "LineString"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/lineString"
}
} - "type":
} - ,{
- "title":"MultiLineString",
- "properties":{
- "type":,{
- "enum":[
- "MultiLineString"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/lineString"
}
}
} - "type":
} - ,{
- "title":"Polygon",
- "properties":{
- "type":,{
- "enum":[
- "Polygon"
]
} - "enum":
- "coordinates":{
- "$ref":"#/definitions/polygon"
}
} - "type":
} - {
- "title":"MultiPolygon",
- "properties":{
- "type":,{
- "enum":[
- "MultiPolygon"
]
} - "enum":
- "coordinates":{
- "type":"array",
- "items":{
- "$ref":"#/definitions/polygon"
}
}
} - "type":
}
] - "position":,{
- "description":"A single position",
- "type":"array",
- "minItems":2,
- "items":,[
- ,{
- "type":"number"
} - {
- "type":"number"
}
] - "additionalItems":false
} - "positionArray":,{
- "description":"An array of positions",
- "type":"array",
- "items":{
- "$ref":"#/definitions/position"
}
} - "lineString":,{
- "description":"An array of two or more positions",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":2
}
]
} - "linearRing":,{
- "description":"An array of four positions where the first equals the last",
- "allOf":[
- ,{
- "$ref":"#/definitions/positionArray"
} - {
- "minItems":4
}
]
} - "polygon":{
- "description":"An array of linear rings",
- "type":"array",
- "items":{
- "$ref":"#/definitions/linearRing"
}
}
} - "shanghai-world-university-ranking@public_records":{
- "properties":{
- "fields":{
- "type":"object",
- "properties":{
- "world_rank":,{
- "type":"string",
- "title":"World rank",
- "description":"World rank of the university, according to Shanghai ranking"
} - "university_name":,{
- "type":"string",
- "title":"University",
- "description":"Name of the university"
} - "national_rank":,{
- "type":"string",
- "title":"National rank",
- "description":"National rank of the university, according to Shanghai ranking"
} - "total_score":,{
- "type":"number",
- "title":"Total score",
- "description":"Total score of the university"
} - "alumni":,{
- "type":"number",
- "title":"Alumni",
- "description":"Alumni of an institution winning Nobel Prizes and Fields Medals"
} - "award":,{
- "type":"number",
- "title":"Award",
- "description":"Staff of an institution winning Nobel Prizes and Fields Medals"
} - "hici":,{
- "type":"number",
- "title":"Hi Ci",
- "description":"The number of Highly Cited Researchers selected by Thomson Reuters. The Highly Cited Researchers list issued in December 2015 (2015 HCR List as of December 1 2015) was used for the calculation of HiCi indicator in ARWU 2016. Only the primary affiliations of Highly Cited Researchers are considered."
} - "ns":,{
- "type":"number",
- "title":"N&S",
- "description":"The number of papers published in Nature and Science between 2011 and 2015. To distinguish the order of author affiliation, a weight of 100% is assigned for corresponding author affiliation, 50% for first author affiliation (second author affiliation if the first author affiliation is the same as corresponding author affiliation), 25% for the next author affiliation, and 10% for other author affiliations. Only publications of 'Article' type is considered."
} - "pub":,{
- "type":"number",
- "title":"PUB",
- "description":"Total number of papers indexed in Science Citation Index-Expanded and Social Science Citation Index in 2015. Only publications of 'Article' type is considered. When calculating the total number of papers of an institution, a special weight of two was introduced for papers indexed in Social Science Citation Index."
} - "pcp":,{
- "type":"number",
- "title":"PCP",
- "description":"The weighted scores of the above five indicators divided by the number of full-time equivalent academic staff. If the number of academic staff for institutions of a country cannot be obtained, the weighted scores of the above five indicators is used. For ARWU 2016, the numbers of full-time equivalent academic staff are obtained for institutions in USA, UK, France, Canada, Japan, Italy, China, Australia, Netherlands, Sweden, Switzerland, Belgium, South Korea, Czech, Slovenia, New Zealand etc."
} - "year":,{
- "type":"string",
- "format":"date",
- "title":"Year",
- "description":"Year of the ranking"
} - "world_rank_int":,{
- "type":"integer",
- "title":"World rank integer",
- "description":"World rank integer of the university, according to Shanghai ranking : - If World rank integer < 101, this indicator is the rank of the university - If 100 < World rank integer < 201, the rank of the university is between World rank integer and (World rank integer + 49) - If 200 < world_rank_int, the rank of the university is between World rank integer and (World rank integer + 99)"
} - "country":,{
- "type":"string",
- "title":"Country",
- "description":"University country"
} - "iso2_code":,{
- "type":"string",
- "title":"ISO2 CODE",
- "description":"ISO 3166-1 alpha-2 of university country"
} - "iso3_code":,{
- "type":"string",
- "title":"ISO3 CODE",
- "description":"ISO 3166-1 alpha-3 of university country"
} - "geo_shape":,{
- "type":"object",
- "oneOf":,[
- {
- "$ref":"#/definitions/geometry"
}
] - "title":"Geo Shape",
- "description":""
} - "geo_point_2d":{
- "type":"array",
- "minItems":2,
- "maxItems":2,
- "items":,{
- "type":"number"
} - "title":"Geo Point 2D",
- "description":""
}
} - "world_rank":
}
} - "fields":
} - "properties":
} - "shanghai-world-university-ranking@public":
}