本文整理了Java中com.fasterxml.jackson.module.jsonSchema.JsonSchema.minimalForFormat()
方法的一些代码示例,展示了JsonSchema.minimalForFormat()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JsonSchema.minimalForFormat()
方法的具体详情如下:
包路径:com.fasterxml.jackson.module.jsonSchema.JsonSchema
类名称:JsonSchema
方法名:minimalForFormat
[英]Create a schema which verifies only that an object is of the given format.
[中]创建一个仅验证对象是否为给定格式的架构。
代码示例来源:origin: com.fasterxml.jackson.module/jackson-module-jsonSchema
@Override
public void itemsFormat(JsonFormatTypes format) throws JsonMappingException
{
schema.setItemsSchema(JsonSchema.minimalForFormat(format));
}
代码示例来源:origin: FasterXML/jackson-module-jsonSchema
@Override
public void itemsFormat(JsonFormatTypes format) throws JsonMappingException
{
schema.setItemsSchema(JsonSchema.minimalForFormat(format));
}
代码示例来源:origin: io.syndesis.connector/connector-support-processor
public WrapperProcessorTest() {
final ObjectSchema parameters = new ObjectSchema();
parameters.putProperty("param1", JsonSchema.minimalForFormat(JsonFormatTypes.STRING));
parameters.putProperty("param2", JsonSchema.minimalForFormat(JsonFormatTypes.STRING));
schema.putProperty("parameters", parameters);
final ObjectSchema body = new ObjectSchema();
body.putProperty("body1", JsonSchema.minimalForFormat(JsonFormatTypes.STRING));
body.putProperty("body2", JsonSchema.minimalForFormat(JsonFormatTypes.STRING));
schema.putProperty("body", body);
}
内容来源于网络,如有侵权,请联系作者删除!