action contribly_get_artifact_formats { label: "Artifact formats" description: "List the available artifact formats" provider: contribly method: GET path: "/artifact-formats" encoding: json output: { type: "object" properties: { contribution: { type: "array" items: { type: "object" properties: { contentType: { type: "string" } fileExtension: { type: "string" } forContentType: { type: "string" } label: { type: "string" } preserveAspectRatio: { type: "boolean" } public: { type: "boolean" } upscaleAllowed: { type: "boolean" } } } } cover: { type: "array" items: { type: "object" additionalProperties: true } } profileImage: { type: "array" items: { type: "object" additionalProperties: true } } } } }