action apicurio_get_latest_artifact { label: "Get latest artifact" description: "Returns the latest version of the artifact in its raw form. The `Content-Type` of the\nresponse depends on the artifact type. In most cases, this is `application/json`, but \nfor some types it may be different (for example, `PROTOBUF`).\n\nThis operation may fail for one of the following reasons:\n\n* No artifact with this `artifactId` exists (HTTP error `404`)\n* A server error occurred (HTTP error `500`)\n" provider: apicurio method: GET path: "/groups/{groupId}/artifacts/{artifactId}" encoding: json input: { type: "object" properties: { dereference: { type: "boolean" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }