Uses of Interface
org.eclipse.microprofile.openapi.models.media.Schema
Packages that use Schema
Package
Description
A set of Java interfaces, annotations and programming models which allow Java developers to natively produce OpenAPI
v3 documents from their JAX-RS applications.
A set of interfaces for programmable models and their helper classes, many derived from Swagger Core library.
An interface of a programmable model to represent a single header object.
A set of interfaces for programmable models to represent input and output data types and media types.
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 SchemaModifier and TypeMethodDescriptionstatic 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 SchemaModifier and TypeMethodDescriptiondefault 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 SchemaModifier and TypeMethodDescriptionComponents.getSchemas()Returns the schemas property from a Components instance.Methods in org.eclipse.microprofile.openapi.models with parameters of type SchemaModifier and TypeMethodDescriptionAdds 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 SchemaModifier and TypeMethodDescriptiondefault ComponentsSets 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 SchemaModifier and TypeMethodDescriptionHeader.getSchema()Returns the schema property from a Header instance.Methods in org.eclipse.microprofile.openapi.models.headers with parameters of type Schema -
Uses of Schema in org.eclipse.microprofile.openapi.models.media
Methods in org.eclipse.microprofile.openapi.models.media that return SchemaModifier and TypeMethodDescriptionAdds the given Schema to the list of schemas used by the allOf property.Adds the given Schema to the list of schemas used by the anyOf property.Schema.addEnumeration(Object enumeration) Adds an item of the appropriate type to the enumerated list of values allowed.default SchemaSchema.additionalPropertiesBoolean(Boolean additionalProperties) Sets the value of "additionalProperties" to either True or False.default SchemaSchema.additionalPropertiesSchema(Schema additionalProperties) Sets the Schema which defines additional properties not defined by "properties" or "patternProperties".Adds the given Schema to the list of schemas used by the oneOf property.Schema.addProperty(String key, Schema propertySchema) Adds a Schema property of the provided name using the given schema.Schema.addRequired(String required) Adds the name of an item to the list of fields required in objects defined by this Schema.default SchemaSets the schemas used by the allOf property of this Schema.default SchemaSets the schemas used by the anyOf property of this Schema.default SchemaSchema.defaultValue(Object defaultValue) Set the default value property of this Schema instance to the value given.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.enumeration(List<Object> enumeration) default SchemaSets the example property of this Schema instance.default SchemaSchema.exclusiveMaximum(Boolean exclusiveMaximum) Sets the exclusiveMaximum property of this Schema instance to the value given.default SchemaSchema.exclusiveMinimum(Boolean 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 SchemaSets the format property of this Schema instance to the given string.Schema.getAdditionalPropertiesSchema()Returns the value of the "additionalProperties" setting, which indicates whether properties not otherwise defined are allowed.Schema.getItems()Returns the Schema used for all the elements of an array typed Schema.Schema.getNot()Returns a Schema which describes properties not allowed in objects defined by the current schema.MediaType.getSchema()Returns the schema property from a MediaType instance.default SchemaSet the Schema used for all the elements of an array typed Schema.default SchemaSchema.maximum(BigDecimal maximum) Sets the maximum property of this Schema instance to the value given.default SchemaSets the maxItems property of this Schema instance to the value given.default SchemaSets 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.minimum(BigDecimal minimum) Sets the minimum property of this Schema instance to the value given.default SchemaSets the minItems property of this Schema instance to the value given.default SchemaSets 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 SchemaSets the not property to a Schema which describes properties not allowed in objects defined by the current schema.default SchemaSets the nullable property of this Schema instance.default SchemaSets the schemas used by the oneOf property of this Schema.default SchemaSets the pattern property of this Schema instance to the string given.default SchemaSchema.properties(Map<String, Schema> properties) Sets the properties of this Schema instance to the map provided.default SchemaSets the readOnly property of this Schema.default SchemaSets the list of fields required in objects defined by this Schema.default SchemaSets the title property of this Schema instance to the given string.default SchemaSchema.type(Schema.SchemaType type) Sets the type used by this Schema to the string given.default SchemaSchema.uniqueItems(Boolean uniqueItems) Sets the uniqueItems property of this Schema instance to the value given.default SchemaSets the writeOnly property of this Schema.default SchemaSets the xml property of this Schema instance.Methods in org.eclipse.microprofile.openapi.models.media that return types with arguments of type SchemaModifier and TypeMethodDescriptionSchema.getAllOf()Returns the schemas used by the allOf property.Schema.getAnyOf()Returns the schemas used by the anyOf property.Schema.getOneOf()Returns the schemas used by the oneOf property.Schema.getProperties()Returns the properties defined in this Schema.Methods in org.eclipse.microprofile.openapi.models.media with parameters of type SchemaModifier and TypeMethodDescriptionAdds the given Schema to the list of schemas used by the allOf property.Adds the given Schema to the list of schemas used by the anyOf property.default SchemaSchema.additionalPropertiesSchema(Schema additionalProperties) Sets the Schema which defines additional properties not defined by "properties" or "patternProperties".Adds the given Schema to the list of schemas used by the oneOf property.Schema.addProperty(String key, Schema propertySchema) Adds a Schema property of the provided name using the given schema.default SchemaSet the Schema used for all the elements of an array typed Schema.default SchemaSets the not property to a Schema which describes properties not allowed in objects defined by the current schema.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.default MediaTypeSets 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".voidSet the Schema used for all the elements of an array typed Schema.voidSets the not property to a Schema which describes properties not allowed in objects defined by the current schema.voidSets the schema field of a MediaType instance to the given schema object.Method parameters in org.eclipse.microprofile.openapi.models.media with type arguments of type SchemaModifier and TypeMethodDescriptiondefault SchemaSets the schemas used by the allOf property of this Schema.default SchemaSets the schemas used by the anyOf property of this Schema.default SchemaSets the schemas used by the oneOf property of this Schema.default SchemaSchema.properties(Map<String, Schema> properties) Sets the properties of this Schema instance to the map provided.voidSets the schemas used by the allOf property of this Schema.voidSets the schemas used by the anyOf property of this Schema.voidSets the schemas used by the oneOf property of this Schema.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 SchemaModifier and TypeMethodDescriptionParameter.getSchema()Returns the schema property from a Parameter instance.Methods in org.eclipse.microprofile.openapi.models.parameters with parameters of type Schema