action apicurio_references_by_global_id { label: "List artifact references by global ID" description: "Returns a list containing all the artifact references using the artifact global 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/globalIds/{globalId}/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" } } } } }