com.fasterxml.jackson.module.jsonSchema.JsonSchema.minimalForFormat()方法的使用及代码示例

x33g5p2x  于2022-01-22 转载在 其他  
字(1.5k)|赞(0)|评价(0)|浏览(124)

本文整理了Java中com.fasterxml.jackson.module.jsonSchema.JsonSchema.minimalForFormat()方法的一些代码示例,展示了JsonSchema.minimalForFormat()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。JsonSchema.minimalForFormat()方法的具体详情如下:
包路径:com.fasterxml.jackson.module.jsonSchema.JsonSchema
类名称:JsonSchema
方法名:minimalForFormat

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);
}

相关文章