action namsor_japanese_name_match { label: "Return a score for matching Japanese name in KANJI ex. 山本 早苗 with a romanized name ex. Yamamoto Sanae" provider: namsor method: GET path: "/api2/json/japaneseNameMatch/{japaneseSurnameLatin}/{japaneseGivenNameLatin}/{japaneseName}" encoding: json input: { type: "object" properties: { japaneseGivenNameLatin: { type: "string" } japaneseName: { type: "string" } japaneseSurnameLatin: { type: "string" } } required: ["japaneseGivenNameLatin", "japaneseName", "japaneseSurnameLatin"] additionalProperties: false } output: { type: "object" description: "Classified matched names" properties: { id: { type: "string" } matchStatus: { type: "string" description: "The name matching status." enum: ["Match", "Mismatch"] } score: { type: "number" format: "double" } script: { type: "string" } } } }