action namsor_gender_full_geo { label: "Infer the likely gender of a full name, given a local context (ISO2 country code)." provider: namsor method: GET path: "/api2/json/genderFullGeo/{fullName}/{countryIso2}" encoding: json input: { type: "object" properties: { countryIso2: { type: "string" } fullName: { type: "string" } } required: ["countryIso2", "fullName"] additionalProperties: false } output: { type: "object" description: "Classified genderized names" properties: { genderScale: { type: "number" format: "double" description: "Compatibility to NamSor_v1 Gender Scale M[-1..U..+1]F value." } id: { type: "string" } likelyGender: { type: "string" description: "Most likely gender" enum: ["male", "female", "unknown"] } name: { type: "string" description: "The input name" } probabilityCalibrated: { type: "number" format: "double" description: "The calibrated probability for inferred gender to have been guessed correctly. -1 = still calibrating. " } score: { type: "number" format: "double" description: "Compatibility to NamSor_v1 Gender score value. Higher score is better, but score is not normalized. Use calibratedProbability if available. " } script: { type: "string" } } } }