Properties
| Name | Type | Description |
|---|---|---|
| id | string | Tag identifier |
| type | string | Tag type |
| sectionId | string | |
| sectionName | string | |
| webTitle | string | |
| webUrl | string | |
| apiUrl | string | |
| keywordType | string |
JSON Schema
{
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Tag identifier"
},
"type": {
"type": "string",
"description": "Tag type",
"enum": [
"keyword",
"series",
"contributor",
"blog",
"tone",
"type",
"newspaper-book",
"newspaper-book-section"
]
},
"sectionId": {
"type": "string"
},
"sectionName": {
"type": "string"
},
"webTitle": {
"type": "string"
},
"webUrl": {
"type": "string",
"format": "uri"
},
"apiUrl": {
"type": "string",
"format": "uri"
},
"keywordType": {
"type": "string"
}
},
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Tag"
}