action namsor_japanese_name_kanji_candidates { label: "Identify japanese name candidates in KANJI, based on the romanized name ex. Yamamoto Sanae" provider: namsor method: GET path: "/api2/json/japaneseNameKanjiCandidates/{japaneseSurnameLatin}/{japaneseGivenNameLatin}" encoding: json input: { type: "object" properties: { japaneseGivenNameLatin: { type: "string" } japaneseSurnameLatin: { type: "string" } } required: ["japaneseGivenNameLatin", "japaneseSurnameLatin"] 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" } } } }