action apicurio_references_by_content_id { label: "List artifact references by content ID" description: "Returns a list containing all the artifact references using the artifact content ID.\n\nThis operation may fail for one of the following reasons:\n\n* A server error occurred (HTTP error `500`)" provider: apicurio method: GET path: "/ids/contentIds/{contentId}/references" encoding: json output: { type: "array" items: { type: "object" description: "A reference to a different artifact. Typically used with artifact types that can have dependencies like Protobuf." required: ["artifactId", "groupId", "name"] properties: { artifactId: { type: "string" } groupId: { type: "string" } name: { type: "string" } version: { type: "string" } } } } }