action namsor_taxonomy_classes { label: "Print the taxonomy classes valid for the given classifier." provider: namsor method: GET path: "/api2/json/taxonomyClasses/{classifierName}" encoding: json input: { type: "object" properties: { classifierName: { type: "string" } } required: ["classifierName"] additionalProperties: false } output: { type: "object" properties: { classifierName: { type: "string" description: "Name of the classifier as per apiStatus (corresponds also to the name of the service in apiServices)" } classifyingScripts: { type: "array" description: "The scripts / alphabets this classifiers classifies to" items: { type: "string" description: "The scripts / alphabets this classifiers classifies to" } } taxonomyClasses: { type: "array" description: "The taxonomy classes this classifier classifies to" items: { type: "string" description: "The taxonomy classes this classifier classifies to" } } } } }