action vocadb_get_api_tags_id { label: "get_api_tags_id" provider: vocadb method: GET path: "/api/tags/{id}" encoding: json input: { type: "object" properties: { fields: { type: "string" enum: ["None", "AdditionalNames", "AliasedTo", "Description", "MainPicture", "Names", "Parent", "RelatedTags", "TranslatedDescription", "WebLinks"] } id: { type: "integer" format: "int32" } lang: { type: "string" enum: ["Default", "Japanese", "Romaji", "English"] } } required: ["id"] additionalProperties: false } output: { type: "object" properties: { additionalNames: { type: "string" } aliasedTo: { type: "object" properties: { additionalNames: { type: "string" } categoryName: { type: "string" } id: { type: "integer" format: "int32" } name: { type: "string" } urlSlug: { type: "string" } } additionalProperties: false } categoryName: { type: "string" } createDate: { type: "string" format: "date-time" } defaultNameLanguage: { type: "string" enum: ["Unspecified", "Japanese", "Romaji", "English"] } description: { type: "string" } id: { type: "integer" format: "int32" } mainPicture: { type: "object" properties: { mime: { type: "string" } name: { type: "string" } urlOriginal: { type: "string" } urlSmallThumb: { type: "string" } urlThumb: { type: "string" } urlTinyThumb: { type: "string" } } additionalProperties: false } name: { type: "string" } names: { type: "array" items: { type: "object" properties: { id: { type: "integer" format: "int32" } language: { type: "object" additionalProperties: true } value: { type: "string" } } additionalProperties: false } } parent: { type: "object" additionalProperties: true } relatedTags: { type: "array" items: { type: "object" additionalProperties: true } } status: { type: "string" enum: ["Draft", "Finished", "Approved", "Locked"] } targets: { type: "integer" format: "int32" } translatedDescription: { type: "object" properties: { english: { type: "string" } original: { type: "string" } } additionalProperties: false } urlSlug: { type: "string" } usageCount: { type: "integer" format: "int32" } version: { type: "integer" format: "int32" } webLinks: { type: "array" items: { type: "object" properties: { category: { type: "string" enum: ["Official", "Commercial", "Reference", "Other"] } description: { type: "string" } descriptionOrUrl: { type: "string" } disabled: { type: "boolean" } id: { type: "integer" format: "int32" } url: { type: "string" } } additionalProperties: false } } } additionalProperties: false } }