action core_near_duplicate_articles { label: "Get all near duplicate articles" description: "Method accepts values for several parameters and retrieves a JSON array of articles which have near duplicate content matching the input parameters' values. The response array contains ids of the near duplicate articles along with their relevance scores." provider: core method: POST path: "/articles/dedup" encoding: json input: { type: "object" properties: { description: { type: "string" } doi: { type: "string" } fulltext: { type: "string" } identifier: { type: "string" } repositoryId: { type: "string" } title: { type: "string" } year: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }