@Retention(value=RUNTIME)
@Inherited
public @interface SchemaProperty
properties
attribute of a Schema
annotation.
These types can be objects, but also primitives and arrays.
This object is an extended subset of the JSON Schema Specification Wright Draft 00.Modifier and Type | Required Element and Description |
---|---|
java.lang.String |
name
The name of the property.
|
Modifier and Type | Optional Element and Description |
---|---|
java.lang.Class<?>[] |
allOf
Provides an array of java class implementations which can be used to describe multiple acceptable schemas.
|
java.lang.Class<?>[] |
anyOf
Provides an array of java class implementations which can be used to describe multiple acceptable schemas.
|
java.lang.String |
defaultValue
Provides a default value.
|
boolean |
deprecated
Specifies that a schema is deprecated and SHOULD be transitioned out of usage.
|
java.lang.String |
description
A description of the schema.
|
DiscriminatorMapping[] |
discriminatorMapping
An array of discriminator mappings.
|
java.lang.String |
discriminatorProperty
Provides a discriminator property value.
|
java.lang.String[] |
enumeration
Provides a list of enum values.
|
java.lang.String |
example
A free-form property to include an example of an instance for this schema.
|
boolean |
exclusiveMaximum
If true, makes the maximum value exclusive, or a less-than criteria.
|
boolean |
exclusiveMinimum
If true, makes the minimum value exclusive, or a greater-than criteria.
|
ExternalDocumentation |
externalDocs
Additional external documentation for this schema.
|
java.lang.String |
format
Provides an optional override for the format.
|
boolean |
hidden
Allows schema to be marked as hidden.
|
java.lang.Class<?> |
implementation
Provides a java class as implementation for this schema.
|
java.lang.String |
maximum
Sets the maximum numeric value for a property.
|
int |
maxItems
Only applicable if type=array.
|
int |
maxLength
Sets the maximum length of a string value.
|
int |
maxProperties
Constrains the number of arbitrary properties when additionalProperties is defined.
|
java.lang.String |
minimum
Sets the minimum numeric value for a property.
|
int |
minItems
Only applicable if type=array.
|
int |
minLength
Sets the minimum length of a string value.
|
int |
minProperties
Constrains the number of arbitrary properties when additionalProperties is defined.
|
double |
multipleOf
Constrains a value such that when divided by the multipleOf, the remainder must be an integer.
|
java.lang.Class<?> |
not
Provides a java class to be used to disallow matching properties.
|
boolean |
nullable
Allows sending a null value for the defined schema.
|
java.lang.Class<?>[] |
oneOf
Provides an array of java class implementations which can be used to describe multiple acceptable schemas.
|
java.lang.String |
pattern
A pattern that the value must satisfy.
|
boolean |
readOnly
Relevant only for Schema "properties" definitions.
|
java.lang.String |
ref
Reference value to a Schema definition.
|
java.lang.String[] |
requiredProperties
Allows multiple properties in an object to be marked as required.
|
java.lang.String |
title
A title to explain the purpose of the schema.
|
SchemaType |
type
Provides an override for the basic type of the schema.
|
boolean |
uniqueItems
Only applicable if type=array.
|
boolean |
writeOnly
Relevant only for Schema "properties" definitions.
|
public abstract java.lang.String name
The name will be used as the key to add this schema to the parent schema's 'properties' map.
public abstract java.lang.Class<?> implementation
public abstract java.lang.Class<?> not
public abstract java.lang.Class<?>[] oneOf
Inline or referenced schema MUST be of a Schema Object and not a standard JSON Schema.
public abstract java.lang.Class<?>[] anyOf
Inline or referenced schema MUST be of a Schema Object and not a standard JSON Schema.
public abstract java.lang.Class<?>[] allOf
Inline or referenced schema MUST be of a Schema Object and not a standard JSON Schema.
public abstract java.lang.String title
public abstract double multipleOf
public abstract java.lang.String maximum
public abstract boolean exclusiveMaximum
public abstract java.lang.String minimum
public abstract boolean exclusiveMinimum
public abstract int maxLength
public abstract int minLength
public abstract java.lang.String pattern
public abstract int maxProperties
public abstract int minProperties
public abstract java.lang.String[] requiredProperties
public abstract java.lang.String description
public abstract java.lang.String format
If a consumer is unaware of the meaning of the format, they shall fall back to using the basic type without format. For example, if \"type: integer, format: int128\" were used to designate a very large integer, most consumers will not understand how to handle it, and fall back to simply \"type: integer\"
public abstract java.lang.String ref
This property provides a reference to an object defined elsewhere. This property and all other properties are mutually exclusive. If other properties are defined in addition to the ref property then the result is undefined.
public abstract boolean nullable
public abstract boolean readOnly
If the property is marked as readOnly being true and is in the required list, the required will take effect on the response only. A property MUST NOT be marked as both readOnly and writeOnly being true.
public abstract boolean writeOnly
If the property is marked as writeOnly being true and is in the required list, the required will take effect on the request only. A property MUST NOT be marked as both readOnly and writeOnly being true.
public abstract java.lang.String example
To represent examples that cannot be naturally represented in JSON or YAML, a string value is used to contain the example with escaping where necessary.
When associated with a specific media type, the example string shall be parsed by the consumer to be treated as an object or an array.public abstract ExternalDocumentation externalDocs
public abstract boolean deprecated
public abstract SchemaType type
Value MUST be a string. Multiple types via an array are not supported.
MUST be a valid type per the OpenAPI Specification.public abstract java.lang.String[] enumeration
public abstract java.lang.String defaultValue
Unlike JSON Schema, the value MUST conform to the defined type for the Schema Object defined at the same level.
For example, if type is string, then default can be "foo" but cannot be 1.public abstract java.lang.String discriminatorProperty
The discriminator is an object name that is used to differentiate between other schemas which may satisfy the payload description.
public abstract DiscriminatorMapping[] discriminatorMapping
public abstract boolean hidden
public abstract int maxItems
An array instance is valid against "maxItems" if its size is less than, or equal to, the value of this keyword.
Ignored if value is Integer.MIN_VALUE.public abstract int minItems
An array instance is valid against "minItems" if its size is greater than, or equal to, the value of this keyword.
Ignored if value is Integer.MAX_VALUE.public abstract boolean uniqueItems
If false, the instance validates successfully. If true, the instance validates successfully if all of its elements are unique.