action namsor_japanese_name_latin_candidates { label: "Romanize japanese name, based on the name in Kanji." provider: namsor method: GET path: "/api2/json/japaneseNameLatinCandidates/{japaneseSurnameKanji}/{japaneseGivenNameKanji}" encoding: json input: { type: "object" properties: { japaneseGivenNameKanji: { type: "string" } japaneseSurnameKanji: { type: "string" } } required: ["japaneseGivenNameKanji", "japaneseSurnameKanji"] additionalProperties: false } output: { type: "object" description: "Classified matched names" properties: { firstName: { type: "string" description: "The first name (also known as given name)" } id: { type: "string" } lastName: { type: "string" description: "The last name (also known as family name, or surname)" } matchCandidates: { type: "array" description: "The ordered list of name matching candidates" items: { type: "object" description: "The ordered list of name matching candidates" properties: { candidateName: { type: "string" description: "The name matching candidate name" } predScoreFamilyName: { type: "number" format: "double" description: "The family name prediction score." } predScoreGivenName: { type: "number" format: "double" description: "The given name prediction score." } probability: { type: "number" format: "double" description: "The name matching estimated probability." } } } } orderOption: { type: "string" description: "The option for ordering" } script: { type: "string" } } } }