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

com.sdl.webapp.common.impl.localization.semantics.JsonSchema Maven / Gradle / Ivy

Go to download

DXA Common project contains framework common classes shared between all other artifacts

There is a newer version: 2.3.5
Show newest version
package com.sdl.webapp.common.impl.localization.semantics;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
import lombok.Setter;

import java.util.List;

@Setter
@Getter
public class JsonSchema {

    @JsonProperty("Id")
    private long id;

    @JsonProperty("RootElement")
    private String rootElement;

    @JsonProperty("Fields")
    private List fields;

    @JsonProperty("Semantics")
    private List semantics;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy