{"id":"ba94edaa27ba3a7b","repo":"docker/cli","slug":"unsupported-manifest-format-v","errorCode":null,"errorMessage":"unsupported manifest format: %v","messagePattern":"unsupported manifest format: (.+?)","errorType":"exception","errorClass":null,"httpStatus":null,"severity":"error","filePath":"internal/registryclient/fetcher.go","lineNumber":54,"sourceCode":"\tcase *ocischema.DeserializedManifest:\n\t\treturn pullManifestOCISchema(ctx, ref, repo, *v)\n\tcase *manifestlist.DeserializedManifestList:\n\t\treturn types.ImageManifest{}, fmt.Errorf(\"%s is a manifest list\", ref)\n\t}\n\treturn types.ImageManifest{}, fmt.Errorf(\"%s is not a manifest\", ref)\n}\n\nfunc fetchList(ctx context.Context, repo distribution.Repository, ref reference.Named) ([]types.ImageManifest, error) {\n\tmanifest, err := getManifest(ctx, repo, ref)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tswitch v := manifest.(type) {\n\tcase *manifestlist.DeserializedManifestList:\n\t\treturn pullManifestList(ctx, ref, repo, *v)\n\tdefault:\n\t\treturn nil, fmt.Errorf(\"unsupported manifest format: %v\", v)\n\t}\n}\n\nfunc getManifest(ctx context.Context, repo distribution.Repository, ref reference.Named) (distribution.Manifest, error) {\n\tmanSvc, err := repo.Manifests(ctx)\n\tif err != nil {\n\t\treturn nil, err\n\t}\n\n\tdgst, opts, err := getManifestOptionsFromReference(ref)\n\tif err != nil {\n\t\treturn nil, fmt.Errorf(\"image manifest for %q does not exist\", ref)\n\t}\n\treturn manSvc.Get(ctx, dgst, opts...)\n}\n\nfunc pullManifestSchemaV2(ctx context.Context, ref reference.Named, repo distribution.Repository, mfst schema2.DeserializedManifest) (types.ImageManifest, error) {\n\tmanifestDesc, err := validateManifestDigest(ref, mfst)","sourceCodeStart":36,"sourceCodeEnd":72,"githubUrl":"https://github.com/docker/cli/blob/e9452d6e785f6e365712b9d71bd7517591773c86/internal/registryclient/fetcher.go#L36-L72","documentation":"Error \"unsupported manifest format: %v\" thrown in docker/cli.","triggerScenarios":"Thrown at internal/registryclient/fetcher.go:54 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":[],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"analyzedSha":"e9452d6e785f6e365712b9d71bd7517591773c86","analyzedAt":"2026-08-01T07:09:22.474Z","schemaVersion":2}