Uses of Interface
org.eclipse.microprofile.openapi.models.media.Schema
-
Packages that use Schema Package Description org.eclipse.microprofile.openapi A set of Java interfaces, annotations and programming models which allow Java developers to natively produce OpenAPI v3.1 documents from their Jakarta REST applications.org.eclipse.microprofile.openapi.models A set of interfaces for programmable models and their helper classes, many derived from Swagger Core library.org.eclipse.microprofile.openapi.models.headers An interface of a programmable model to represent a single header object.org.eclipse.microprofile.openapi.models.media A set of interfaces for programmable models to represent input and output data types and media types.org.eclipse.microprofile.openapi.models.parameters A set of model interfaces to describe operation parameters and operation's request body. -
-
Uses of Schema in org.eclipse.microprofile.openapi
Methods in org.eclipse.microprofile.openapi that return Schema Modifier and Type Method Description static SchemaOASFactory. createSchema()This method creates a newSchemainstance.default SchemaOASFilter. filterSchema(Schema schema)Allows filtering of a particular Schema.Methods in org.eclipse.microprofile.openapi with parameters of type Schema Modifier and Type Method Description default SchemaOASFilter. filterSchema(Schema schema)Allows filtering of a particular Schema. -
Uses of Schema in org.eclipse.microprofile.openapi.models
Methods in org.eclipse.microprofile.openapi.models that return types with arguments of type Schema Modifier and Type Method Description Map<String,Schema>Components. getSchemas()Returns the schemas property from a Components instance.Methods in org.eclipse.microprofile.openapi.models with parameters of type Schema Modifier and Type Method Description ComponentsComponents. addSchema(String key, Schema schema)Adds the given schema to this Components' list of schemas with the given string as its key.Method parameters in org.eclipse.microprofile.openapi.models with type arguments of type Schema Modifier and Type Method Description default ComponentsComponents. schemas(Map<String,Schema> schemas)Sets this Components' schemas property to the given Map containing keys and reusable schemas.voidComponents. setSchemas(Map<String,Schema> schemas)Sets this Components' schemas property to the given Map containing keys and reusable schema objects. -
Uses of Schema in org.eclipse.microprofile.openapi.models.headers
Methods in org.eclipse.microprofile.openapi.models.headers that return Schema Modifier and Type Method Description SchemaHeader. getSchema()Returns the schema property from a Header instance.Methods in org.eclipse.microprofile.openapi.models.headers with parameters of type Schema Modifier and Type Method Description default HeaderHeader. schema(Schema schema)Sets this Header's schema property to the given object.voidHeader. setSchema(Schema schema)Sets this Header's schema property to the given object. -
Uses of Schema in org.eclipse.microprofile.openapi.models.media
Methods in org.eclipse.microprofile.openapi.models.media that return Schema Modifier and Type Method Description SchemaSchema. addAllOf(Schema allOf)Adds the given Schema to the list of schemas used by the allOf property.SchemaSchema. addAnyOf(Schema anyOf)Adds the given Schema to the list of schemas used by the anyOf property.SchemaSchema. addDependentRequired(String propertyName, List<String> additionalRequiredPropertyNames)Sets the list of additional property names that are required if a property namedpropertyNameexists.SchemaSchema. addDependentSchema(String propertyName, Schema schema)Sets the dependent schema for a property name.SchemaSchema. addEnumeration(Object enumeration)Adds an item of the appropriate type to the enumerated list of values allowed.SchemaSchema. addExample(Object example)Adds an example to the examples list.default SchemaSchema. additionalPropertiesBoolean(Boolean additionalProperties)Deprecated.useadditionalPropertiesSchema(Schema)with a boolean-valued schemadefault SchemaSchema. additionalPropertiesSchema(Schema additionalProperties)Sets the Schema which defines additional properties not defined by "properties" or "patternProperties".SchemaSchema. addOneOf(Schema oneOf)Adds the given Schema to the list of schemas used by the oneOf property.SchemaSchema. addPatternProperty(String regularExpression, Schema schema)Adds a regular expression and schema pair to the list of pattern properties.SchemaSchema. addPrefixItem(Schema prefixItem)Adds a schema to the end of the prefixItems list.SchemaSchema. addProperty(String key, Schema propertySchema)Adds a Schema property of the provided name using the given schema.SchemaSchema. addRequired(String required)Adds the name of an item to the list of fields required in objects defined by this Schema.SchemaSchema. addType(Schema.SchemaType type)Adds a type to the type list.default SchemaSchema. allOf(List<Schema> allOf)Sets the schemas used by the allOf property of this Schema.default SchemaSchema. anyOf(List<Schema> anyOf)Sets the schemas used by the anyOf property of this Schema.default SchemaSchema. booleanSchema(Boolean booleanSchema)Sets this schema to a boolean value.default SchemaSchema. comment(String comment)Sets the comment to be included in the$commentproperty of the schema.default SchemaSchema. constValue(Object constValue)Sets the const property from this Schema instance.default SchemaSchema. contains(Schema contains)Sets the contains property of this Schema instance.default SchemaSchema. contentEncoding(String contentEncoding)Sets the contentEncoding property from this Schema instance.default SchemaSchema. contentMediaType(String contentMediaType)Sets the contentMediaType property from this Schema instance.default SchemaSchema. contentSchema(Schema contentSchema)Sets the contentSchema property from this Schema instance.default SchemaSchema. defaultValue(Object defaultValue)Set the default value property of this Schema instance to the value given.default SchemaSchema. dependentRequired(Map<String,List<String>> dependentRequired)Sets the dependentRequired property of this Schema instance.default SchemaSchema. dependentSchemas(Map<String,Schema> dependentSchemas)Sets the dependentSchemas property of this Schema instance.default SchemaSchema. deprecated(Boolean deprecated)Sets the deprecated property of this Schema.default SchemaSchema. description(String description)Sets the description property of this Schema to the given string.default SchemaSchema. discriminator(Discriminator discriminator)Sets the discriminator property of this Schema instance to the given object.default SchemaSchema. elseSchema(Schema elseSchema)Sets the "else" schema.default SchemaSchema. enumeration(List<Object> enumeration)default SchemaSchema. example(Object example)Deprecated.useexamples(List)default SchemaSchema. examples(List<Object> examples)Sets the examples property of this Schema instance.default SchemaSchema. exclusiveMaximum(BigDecimal exclusiveMaximum)Sets the exclusiveMaximum property of this Schema instance to the value given.default SchemaSchema. exclusiveMinimum(BigDecimal exclusiveMinimum)Sets the exclusiveMinimum property of this Schema instance to the value given.default SchemaSchema. externalDocs(ExternalDocumentation externalDocs)Sets the externalDocs property of this Schema to the indicated value.default SchemaSchema. format(String format)Sets the format property of this Schema instance to the given string.SchemaSchema. getAdditionalPropertiesSchema()Returns the value of the "additionalProperties" setting, which indicates whether properties not otherwise defined are allowed.SchemaSchema. getContains()Returns the contains property of this Schema instance.SchemaSchema. getContentSchema()Returns the contentSchema property from this Schema instance.SchemaSchema. getElseSchema()Returns the "else" schema.SchemaSchema. getIfSchema()Returns the "if" schema.SchemaSchema. getItems()Returns the Schema used for all the elements of an array typed Schema.SchemaSchema. getNot()Returns a Schema which describes properties not allowed in objects defined by the current schema.SchemaSchema. getPropertyNames()Returns the propertyNames property from this Schema instance.SchemaMediaType. getSchema()Returns the schema property from a MediaType instance.SchemaSchema. getThenSchema()Returns the "then" schema.SchemaSchema. getUnevaluatedItems()Returns the unevaluatedItems property of this Schema instance.SchemaSchema. getUnevaluatedProperties()Returns the unevaluatedProperties property of this Schema instance.default SchemaSchema. ifSchema(Schema ifSchema)Sets the "if" schema.default SchemaSchema. items(Schema items)Set the Schema used for all the elements of an array typed Schema.default SchemaSchema. maxContains(Integer maxContains)Sets the maxContains property from this Schema instance.default SchemaSchema. maximum(BigDecimal maximum)Sets the maximum property of this Schema instance to the value given.default SchemaSchema. maxItems(Integer maxItems)Sets the maxItems property of this Schema instance to the value given.default SchemaSchema. maxLength(Integer maxLength)Sets the maxLength property of this Schema instance to the value given.default SchemaSchema. maxProperties(Integer maxProperties)Sets the maxProperties property of this Schema instance to the value given.default SchemaSchema. minContains(Integer minContains)Sets the minContains property from this Schema instance.default SchemaSchema. minimum(BigDecimal minimum)Sets the minimum property of this Schema instance to the value given.default SchemaSchema. minItems(Integer minItems)Sets the minItems property of this Schema instance to the value given.default SchemaSchema. minLength(Integer minLength)Sets the minLength property of this Schema instance to the value given.default SchemaSchema. minProperties(Integer minProperties)Sets the minProperties property of this Schema instance to the value given.default SchemaSchema. multipleOf(BigDecimal multipleOf)Sets the multipleOf property of this Schema instance to the value given.default SchemaSchema. not(Schema not)Sets the not property to a Schema which describes properties not allowed in objects defined by the current schema.default SchemaSchema. oneOf(List<Schema> oneOf)Sets the schemas used by the oneOf property of this Schema.default SchemaSchema. pattern(String pattern)Sets the pattern property of this Schema instance to the string given.default SchemaSchema. patternProperties(Map<String,Schema> patternProperties)Sets the patternProperties property from this Schema instance.default SchemaSchema. prefixItems(List<Schema> prefixItems)Sets the prefixItems property of this Schema instance.default SchemaSchema. properties(Map<String,Schema> properties)Sets the properties of this Schema instance to the map provided.default SchemaSchema. propertyNames(Schema propertyNameSchema)Sets the propertyNames property from this Schema instance.default SchemaSchema. readOnly(Boolean readOnly)Sets the readOnly property of this Schema.default SchemaSchema. required(List<String> required)Sets the list of fields required in objects defined by this Schema.default SchemaSchema. schemaDialect(String schemaDialect)Sets the schema dialect in use.SchemaSchema. set(String propertyName, Object value)Sets a schema property.default SchemaSchema. thenSchema(Schema thenSchema)Sets the "then" schema.default SchemaSchema. title(String title)Sets the title property of this Schema instance to the given string.default SchemaSchema. type(List<Schema.SchemaType> types)Sets the type property of this Schema instance.default SchemaSchema. unevaluatedItems(Schema unevaluatedItems)Sets the unevaluatedItems property of this Schema instance.default SchemaSchema. unevaluatedProperties(Schema unevaluatedProperties)Sets the unevaluatedProperties property of this Schema instance.default SchemaSchema. uniqueItems(Boolean uniqueItems)Sets the uniqueItems property of this Schema instance to the value given.default SchemaSchema. writeOnly(Boolean writeOnly)Sets the writeOnly property of this Schema.default SchemaSchema. xml(XML xml)Sets the xml property of this Schema instance.Methods in org.eclipse.microprofile.openapi.models.media that return types with arguments of type Schema Modifier and Type Method Description List<Schema>Schema. getAllOf()Returns the schemas used by the allOf property.List<Schema>Schema. getAnyOf()Returns the schemas used by the anyOf property.Map<String,Schema>Schema. getDependentSchemas()Returns the dependentSchemas property of this Schema instance.List<Schema>Schema. getOneOf()Returns the schemas used by the oneOf property.Map<String,Schema>Schema. getPatternProperties()Returns the patternProperties property from this Schema instance.List<Schema>Schema. getPrefixItems()Returns the prefixItems property of this Schema instance.Map<String,Schema>Schema. getProperties()Returns the properties defined in this Schema.Methods in org.eclipse.microprofile.openapi.models.media with parameters of type Schema Modifier and Type Method Description SchemaSchema. addAllOf(Schema allOf)Adds the given Schema to the list of schemas used by the allOf property.SchemaSchema. addAnyOf(Schema anyOf)Adds the given Schema to the list of schemas used by the anyOf property.SchemaSchema. addDependentSchema(String propertyName, Schema schema)Sets the dependent schema for a property name.default SchemaSchema. additionalPropertiesSchema(Schema additionalProperties)Sets the Schema which defines additional properties not defined by "properties" or "patternProperties".SchemaSchema. addOneOf(Schema oneOf)Adds the given Schema to the list of schemas used by the oneOf property.SchemaSchema. addPatternProperty(String regularExpression, Schema schema)Adds a regular expression and schema pair to the list of pattern properties.SchemaSchema. addPrefixItem(Schema prefixItem)Adds a schema to the end of the prefixItems list.SchemaSchema. addProperty(String key, Schema propertySchema)Adds a Schema property of the provided name using the given schema.default SchemaSchema. contains(Schema contains)Sets the contains property of this Schema instance.default SchemaSchema. contentSchema(Schema contentSchema)Sets the contentSchema property from this Schema instance.default SchemaSchema. elseSchema(Schema elseSchema)Sets the "else" schema.default SchemaSchema. ifSchema(Schema ifSchema)Sets the "if" schema.default SchemaSchema. items(Schema items)Set the Schema used for all the elements of an array typed Schema.default SchemaSchema. not(Schema not)Sets the not property to a Schema which describes properties not allowed in objects defined by the current schema.default SchemaSchema. propertyNames(Schema propertyNameSchema)Sets the propertyNames property from this Schema instance.voidSchema. removeAllOf(Schema allOf)Removes the given Schema to the list of schemas used by the allOf property.voidSchema. removeAnyOf(Schema anyOf)Removes the given Schema to the list of schemas used by the anyOf property.voidSchema. removeOneOf(Schema oneOf)Removes the given Schema to the list of schemas used by the oneOf property.voidSchema. removePrefixItem(Schema prefixItem)Removes a schema from the prefixItems list.default MediaTypeMediaType. schema(Schema schema)Sets the schema field of a MediaType instance to the given schema object.voidSchema. setAdditionalPropertiesSchema(Schema additionalProperties)Sets the Schema which defines additional properties not defined by "properties" or "patternProperties".voidSchema. setContains(Schema contains)Sets the contains property of this Schema instance.voidSchema. setContentSchema(Schema contentSchema)Sets the contentSchema property from this Schema instance.voidSchema. setElseSchema(Schema elseSchema)Sets the "else" schema.voidSchema. setIfSchema(Schema ifSchema)Sets the "if" schema.voidSchema. setItems(Schema items)Set the Schema used for all the elements of an array typed Schema.voidSchema. setNot(Schema not)Sets the not property to a Schema which describes properties not allowed in objects defined by the current schema.voidSchema. setPropertyNames(Schema propertyNameSchema)Sets the propertyNames property from this Schema instance.voidMediaType. setSchema(Schema schema)Sets the schema field of a MediaType instance to the given schema object.voidSchema. setThenSchema(Schema thenSchema)Sets the "then" schema.voidSchema. setUnevaluatedItems(Schema unevaluatedItems)Sets the unevaluatedItems property of this Schema instance.voidSchema. setUnevaluatedProperties(Schema unevaluatedProperties)Sets the unevaluatedProperties property of this Schema instance.default SchemaSchema. thenSchema(Schema thenSchema)Sets the "then" schema.default SchemaSchema. unevaluatedItems(Schema unevaluatedItems)Sets the unevaluatedItems property of this Schema instance.default SchemaSchema. unevaluatedProperties(Schema unevaluatedProperties)Sets the unevaluatedProperties property of this Schema instance.Method parameters in org.eclipse.microprofile.openapi.models.media with type arguments of type Schema Modifier and Type Method Description default SchemaSchema. allOf(List<Schema> allOf)Sets the schemas used by the allOf property of this Schema.default SchemaSchema. anyOf(List<Schema> anyOf)Sets the schemas used by the anyOf property of this Schema.default SchemaSchema. dependentSchemas(Map<String,Schema> dependentSchemas)Sets the dependentSchemas property of this Schema instance.default SchemaSchema. oneOf(List<Schema> oneOf)Sets the schemas used by the oneOf property of this Schema.default SchemaSchema. patternProperties(Map<String,Schema> patternProperties)Sets the patternProperties property from this Schema instance.default SchemaSchema. prefixItems(List<Schema> prefixItems)Sets the prefixItems property of this Schema instance.default SchemaSchema. properties(Map<String,Schema> properties)Sets the properties of this Schema instance to the map provided.voidSchema. setAllOf(List<Schema> allOf)Sets the schemas used by the allOf property of this Schema.voidSchema. setAnyOf(List<Schema> anyOf)Sets the schemas used by the anyOf property of this Schema.voidSchema. setDependentSchemas(Map<String,Schema> dependentSchemas)Sets the dependentSchemas property of this Schema instance.voidSchema. setOneOf(List<Schema> oneOf)Sets the schemas used by the oneOf property of this Schema.voidSchema. setPatternProperties(Map<String,Schema> patternProperties)Sets the patternProperties property from this Schema instance.voidSchema. setPrefixItems(List<Schema> prefixItems)Sets the prefixItems property of this Schema instance.voidSchema. setProperties(Map<String,Schema> properties)Sets the properties of this Schema instance to the map provided. -
Uses of Schema in org.eclipse.microprofile.openapi.models.parameters
Methods in org.eclipse.microprofile.openapi.models.parameters that return Schema Modifier and Type Method Description SchemaParameter. getSchema()Returns the schema property from a Parameter instance.Methods in org.eclipse.microprofile.openapi.models.parameters with parameters of type Schema Modifier and Type Method Description default ParameterParameter. schema(Schema schema)Sets the schema property of a Parameter instance to the given value.voidParameter. setSchema(Schema schema)Sets the schema property of a Parameter instance to the given value.
-