All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.springwolf.asyncapi.v3.bindings.googlepubsub.GooglePubSubSchema Maven / Gradle / Ivy

There is a newer version: 1.9.0
Show newest version
// SPDX-License-Identifier: Apache-2.0
package io.github.springwolf.asyncapi.v3.bindings.googlepubsub;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.EqualsAndHashCode;
import lombok.NoArgsConstructor;

/**
 * The Schema Definition Object is used to describe the Google Cloud Pub/Sub Schema Object with AsyncAPI. While some
 * of this information could be, or is, described using native AsyncAPI, for consistency it makes sense to provide this
 * information here at all times, especially for cases where AsyncAPI does not natively support describing payloads
 * using a supported Google Cloud Pub/Sub schema format like Protobuf.
 */
@Data
@Builder
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode
public class GooglePubSubSchema {
    /**
     * The name of the schema
     */
    @JsonProperty("name")
    private String name;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy