Interface SchemaMixedElement

    • Method Detail

      • getAdditionalProperties

        Map<String,​Object> getAdditionalProperties()
        Returns a map of all additional properties not defined in the schema.
        Returns:
        A Map containing the additional properties, where the key is the property name and the value is the property value.
      • setAdditionalProperties

        void setAdditionalProperties​(Map<String,​Object> additionalProperties)
        Sets the map of additional properties for the element.
        Parameters:
        additionalProperties - A Map of additional properties.
      • getAdditionalProperty

        Object getAdditionalProperty​(String key)
        Retrieves a single additional property by its key.
        Parameters:
        key - The name of the additional property to retrieve.
        Returns:
        The value of the property, or null if the key is not found.
      • setAdditionalProperty

        void setAdditionalProperty​(String key,
                                   Object value)
        Sets a single additional property.
        Parameters:
        key - The name of the additional property.
        value - The value of the additional property.