action monarchinitiative_post_ontol_identifier_resource { label: "Fetches a map from CURIEs/IDs to labels" description: "Takes 'label' list argument either as a querystring argument or as a key\nin the POST body when content-type is application/json." provider: monarchinitiative method: POST path: "/ontol/identifier/" encoding: json input: { type: "object" properties: { label: { type: "array" items: { type: "string" } } } required: ["label"] additionalProperties: false } output: { type: "object" additionalProperties: true } }