Skip to main content

75 posts tagged with "Improvement"

View All Tags

· 2 min read

​ In the Developer Portal, users can update the heading, body and code fonts. For the hosted portal, the user can select list of fonts available on the portal editor. For the self-hosted portal, the web font URL can be provided as part of the portal settings in the build file.

Hosted Portal Users

In the API developer portal, the list of available fonts in the portal editor is updated for code, body and headings.

· 2 min read

OAS allows you to set optional/required properties in models. While serializing a model, optional properties will be omitted if the value of property is not set (i.e. initialized with null) and, required properties will be serialized in any case. This is a case of factoring schema in oneOf/anyOf. Now with this support, you can define properties with the same names but with different optional/required constraints in request/response of an endpoint.