action namsor_name_type { label: "Infer the likely type of a proper noun (personal name, brand name, place name etc.)" provider: namsor method: GET path: "/api2/json/nameType/{properNoun}" encoding: json input: { type: "object" properties: { properNoun: { type: "string" } } required: ["properNoun"] additionalProperties: false } output: { type: "object" description: "Classified typed proper names" properties: { commonType: { type: "string" description: "The most likely common name type" } commonTypeAlt: { type: "string" description: "Best alternative for : The most likely common name type" } id: { type: "string" } name: { type: "string" description: "The input name" } score: { type: "number" format: "double" description: "Higher score is better, but score is not normalized. Use calibratedProbability if available. " } script: { type: "string" } } } }