
com.sdl.webapp.common.impl.localization.semantics.JsonSchema Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dxa-common Show documentation
Show all versions of dxa-common Show documentation
DXA Common project contains framework common classes shared between all other artifacts
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;
}