action core_get_article_by_core_id { label: "Get article by CORE ID" description: "Method will retrieve an article based on given CORE ID." provider: core method: GET path: "/articles/get/{coreId}" encoding: json input: { type: "object" properties: { citations: { type: "string" } coreId: { type: "string" } duplicate: { type: "string" } faithfulMetadata: { type: "string" } fulltext: { type: "string" } metadata: { type: "string" } similar: { type: "string" } urls: { type: "string" } } required: ["coreId"] additionalProperties: false } output: { type: "object" additionalProperties: true } }