Dataverse Search Result Item (dataset)

A single dataset item returned by the University of Chile Dataverse Search API (GET /api/search). Fields reflect the live response observed at datos.uchile.cl on 2026-06-03.

EducationHigher EducationUniversityResearch DataOpen DataRepositoryOAI-PMHDataverseChile

Properties

Name Type Description
name string Title of the dataset.
type string Result type (dataset, dataverse, or file).
url string Resolvable DOI URL for the result.
global_id string Global persistent identifier (e.g. doi:10.34691/UCHILE/L9XF6R).
description string Description / abstract of the dataset.
published_at string Publication timestamp.
publisher string Publishing dataverse / unit.
citation string Plain-text citation.
citationHtml string HTML-formatted citation.
storageIdentifier string Storage location identifier.
identifier_of_dataverse string Alias of the owning dataverse.
name_of_dataverse string Name of the owning dataverse.
keywords array Keyword tags.
subjects array Subject classifications.
fileCount integer Number of files in the dataset.
versionId integer Internal version identifier.
versionState string Version state (e.g. RELEASED).
majorVersion integer Major version number.
minorVersion integer Minor version number.
createdAt string Creation timestamp.
updatedAt string Last update timestamp.
contacts array Dataset contacts.
authors array Dataset authors.
View JSON Schema on GitHub

JSON Schema

university-of-chile-search-item-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/university-of-chile/main/json-schema/university-of-chile-search-item-schema.json",
  "title": "Dataverse Search Result Item (dataset)",
  "description": "A single dataset item returned by the University of Chile Dataverse Search API (GET /api/search). Fields reflect the live response observed at datos.uchile.cl on 2026-06-03.",
  "type": "object",
  "properties": {
    "name": { "type": "string", "description": "Title of the dataset." },
    "type": { "type": "string", "description": "Result type (dataset, dataverse, or file).", "enum": ["dataset", "dataverse", "file"] },
    "url": { "type": "string", "format": "uri", "description": "Resolvable DOI URL for the result." },
    "global_id": { "type": "string", "description": "Global persistent identifier (e.g. doi:10.34691/UCHILE/L9XF6R)." },
    "description": { "type": "string", "description": "Description / abstract of the dataset." },
    "published_at": { "type": "string", "format": "date-time", "description": "Publication timestamp." },
    "publisher": { "type": "string", "description": "Publishing dataverse / unit." },
    "citation": { "type": "string", "description": "Plain-text citation." },
    "citationHtml": { "type": "string", "description": "HTML-formatted citation." },
    "storageIdentifier": { "type": "string", "description": "Storage location identifier." },
    "identifier_of_dataverse": { "type": "string", "description": "Alias of the owning dataverse." },
    "name_of_dataverse": { "type": "string", "description": "Name of the owning dataverse." },
    "keywords": { "type": "array", "items": { "type": "string" }, "description": "Keyword tags." },
    "subjects": { "type": "array", "items": { "type": "string" }, "description": "Subject classifications." },
    "fileCount": { "type": "integer", "description": "Number of files in the dataset." },
    "versionId": { "type": "integer", "description": "Internal version identifier." },
    "versionState": { "type": "string", "description": "Version state (e.g. RELEASED)." },
    "majorVersion": { "type": "integer", "description": "Major version number." },
    "minorVersion": { "type": "integer", "description": "Minor version number." },
    "createdAt": { "type": "string", "format": "date-time", "description": "Creation timestamp." },
    "updatedAt": { "type": "string", "format": "date-time", "description": "Last update timestamp." },
    "contacts": {
      "type": "array",
      "description": "Dataset contacts.",
      "items": {
        "type": "object",
        "properties": {
          "name": { "type": "string" },
          "affiliation": { "type": "string" }
        }
      }
    },
    "authors": { "type": "array", "items": { "type": "string" }, "description": "Dataset authors." }
  },
  "required": ["name", "type", "global_id"],
  "additionalProperties": true
}