action namsor_chinese_name_match { label: "Return a score for matching Chinese name ex. 王晓明 with a romanized name ex. Wang Xiaoming" provider: namsor method: GET path: "/api2/json/chineseNameMatch/{chineseSurnameLatin}/{chineseGivenNameLatin}/{chineseName}" encoding: json input: { type: "object" properties: { chineseGivenNameLatin: { type: "string" } chineseName: { type: "string" } chineseSurnameLatin: { type: "string" } } required: ["chineseGivenNameLatin", "chineseName", "chineseSurnameLatin"] 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" } } } }