Get detailed information for a specific tag
Parameters
Normalized tag form to look up
Try It
Requests are sent directly from your browser. Some servers may block requests due to CORS.
Sending request...
View raw schema
{
"type": "query",
"errors": [
{
"name": "TagNotFound"
}
],
"output": {
"schema": {
"ref": "#tagSummary",
"type": "ref"
},
"encoding": "application/json"
},
"parameters": {
"type": "params",
"required": [
"tag"
],
"properties": {
"tag": {
"type": "string",
"description": "Normalized tag form to look up"
}
}
},
"description": "Get detailed information for a specific tag"
}
Summary information for a tag
Properties
All display forms used for this tag
Whether the tag has been promoted to a facet or authority
Normalized tag form (lowercase, hyphenated)
Promotion target if promoted
Tag quality score (0-100, scaled from 0-1)
minimum: 0maximum: 100
Number of eprints tagged with this tag
minimum: 0
View raw schema
{
"type": "object",
"required": [
"normalizedForm",
"displayForms",
"usageCount",
"qualityScore",
"isPromoted"
],
"properties": {
"isPromoted": {
"type": "boolean",
"description": "Whether the tag has been promoted to a facet or authority"
},
"promotedTo": {
"ref": "#promotionTarget",
"type": "ref",
"description": "Promotion target if promoted"
},
"usageCount": {
"type": "integer",
"minimum": 0,
"description": "Number of eprints tagged with this tag"
},
"displayForms": {
"type": "array",
"items": {
"type": "string"
},
"description": "All display forms used for this tag"
},
"qualityScore": {
"type": "integer",
"maximum": 100,
"minimum": 0,
"description": "Tag quality score (0-100, scaled from 0-1)"
},
"normalizedForm": {
"type": "string",
"description": "Normalized tag form (lowercase, hyphenated)"
}
},
"description": "Summary information for a tag"
}