password-schema-format-with-string-type
Overview
This rule belongs to the openapi-v3-apimatic-linting
ruleset and states that:
The password
format is only applicable to schemas with the type set to string
. It seems that the password
format has been used with an incompatible schema type.
Property | Value |
---|---|
Enabled | Yes |
Maximum Severity | Warning |
Message | The format password is not applicable to the given schema type. |
Code | OPENAPI3APIMATIC_L677 |
Type | Linting |
Rule System | Semantic |
Broad Category | OpenAPI Schemas |
Products Impacted | API Transformer, Code Generation, Developer Experience Portal |
Tags | openapi3 openapi apimatic semantic linting password schema type format string |
Suggested Fixes
- Ensure that the schema type is set to
string
for compatibility with thepassword
format. - If the schema represents a different data type, consider using a compatible format or removing the
password
format.