├── .github └── workflows │ └── maven.yml ├── .gitignore ├── .scripts └── clean.sh ├── CHANGELOG.md ├── LICENSE ├── README.md ├── pom.xml └── src ├── main ├── java │ └── apiaddicts │ │ └── sonar │ │ └── openapi │ │ ├── I18nContext.java │ │ ├── OpenAPICustomPlugin.java │ │ ├── OpenAPICustomProfileDefinition.java │ │ ├── OpenAPICustomRuleRepository.java │ │ ├── OpenAPICustomRulesDefinition.java │ │ ├── checks │ │ ├── BaseCheck.java │ │ ├── RulesLists.java │ │ ├── apim │ │ │ └── wso2 │ │ │ │ ├── AbstractWso2ScopesCheck.java │ │ │ │ ├── OAR002ValidWso2ScopesCheck.java │ │ │ │ ├── OAR003DefinedWso2ScopesDescriptionCheck.java │ │ │ │ ├── OAR004ValidWso2ScopesRolesCheck.java │ │ │ │ ├── OAR005UndefinedWso2ScopeUseCheck.java │ │ │ │ ├── OAR040StandardWso2ScopesNameCheck.java │ │ │ │ └── OAR041UndefinedAuthTypeForWso2ScopeCheck.java │ │ ├── examples │ │ │ ├── OAR031ExamplesCheck.java │ │ │ └── OAR094UseExamplesCheck.java │ │ ├── format │ │ │ ├── AbstractDefaultMediaTypeCheck.java │ │ │ ├── AbstractFormatCheck.java │ │ │ ├── AbstractNamingConventionCheck.java │ │ │ ├── AbstractSchemaCheck.java │ │ │ ├── AbstractUndefinedMediaTypeCheck.java │ │ │ ├── OAR006UndefinedRequestMediaTypeCheck.java │ │ │ ├── OAR007UndefinedResponseMediaTypeCheck.java │ │ │ ├── OAR009DefaultRequestMediaTypeCheck.java │ │ │ ├── OAR010DefaultResponseMediaTypeCheck.java │ │ │ ├── OAR011UrlNamingConventionCheck.java │ │ │ ├── OAR012ParameterNamingConventionCheck.java │ │ │ ├── OAR016NumericFormatCheck.java │ │ │ ├── OAR037StringFormatCheck.java │ │ │ ├── OAR042BasePathCheck.java │ │ │ ├── OAR044MediaTypeCheck.java │ │ │ ├── OAR050ProvideOpSummaryCheck.java │ │ │ ├── OAR051DescriptionDiffersSummaryCheck.java │ │ │ ├── OAR052UndefinedNumericFormatCheck.java │ │ │ ├── OAR066SnakeCaseNamingConventionCheck.java │ │ │ ├── OAR067CamelCaseNamingConventionCheck.java │ │ │ ├── OAR068PascalCaseNamingConventionCheck.java │ │ │ ├── OAR077ParametersInQuerySnakeCaseCheck.java │ │ │ ├── OAR086DescriptionFormatCheck.java │ │ │ ├── OAR087SummaryFormatCheck.java │ │ │ ├── OAR088RefParamCheck.java │ │ │ ├── OAR089RefRequestBodyCheck.java │ │ │ ├── OAR090RefResponseCheck.java │ │ │ ├── OAR097ShortBasePathCheck.java │ │ │ ├── OAR098LongBasePathCheck.java │ │ │ ├── OAR099ApiPrefixBasePathCheck.java │ │ │ ├── OAR100LastPartBasePathCheck.java │ │ │ ├── OAR101FirstPartBasePathCheck.java │ │ │ ├── OAR102SecondPartBasePathCheck.java │ │ │ ├── OAR110LicenseInformationCheck.java │ │ │ ├── OAR111ContactInformationCheck.java │ │ │ ├── OAR113CustomFieldCheck.java │ │ │ └── OAR115VerifyRequiredFields.java │ │ ├── operations │ │ │ ├── AbstractResourceLevelCheck.java │ │ │ ├── AbstractVerbPathCheck.java │ │ │ ├── OAR008AllowedHttpVerbCheck.java │ │ │ ├── OAR013DefaultResponseCheck.java │ │ │ ├── OAR014ResourceLevelWithinNonSuggestedRangeCheck.java │ │ │ ├── OAR015ResourceLevelMaxAllowedCheck.java │ │ │ ├── OAR017ResourcePathCheck.java │ │ │ ├── OAR018ResourcesByVerbCheck.java │ │ │ ├── OAR027PostResponseLocationHeaderCheck.java │ │ │ ├── OAR030StatusEndpointCheck.java │ │ │ ├── OAR032AmbiguousElementsPathCheck.java │ │ │ ├── OAR038StandardCreateResponseCheck.java │ │ │ ├── OAR039StandardResponseCodesCheck.java │ │ │ ├── OAR043ParsingErrorCheck.java │ │ │ ├── OAR046DeclaredTagCheck.java │ │ │ ├── OAR047DocumentedTagCheck.java │ │ │ ├── OAR048AtMostOneBodyParameterCheck.java │ │ │ ├── OAR061GetMethodCheck.java │ │ │ ├── OAR062PostMethodCheck.java │ │ │ ├── OAR063PutMethodCheck.java │ │ │ ├── OAR064PatchMethodCheck.java │ │ │ ├── OAR065DeleteMethodCheck.java │ │ │ ├── OAR071GetQueryParamsDefinedCheck.java │ │ │ ├── OAR091ParamOnlyRefCheck.java │ │ │ ├── OAR092RequestBodyOnlyRefCheck.java │ │ │ ├── OAR093ResponseOnlyRefCheck.java │ │ │ ├── OAR103ResourcesByGetVerbCheck.java │ │ │ ├── OAR104ResourcesByPostVerbCheck.java │ │ │ ├── OAR105ResourcesByPutVerbCheck.java │ │ │ ├── OAR106ResourcesByPatchVerbCheck.java │ │ │ ├── OAR107ResourcesByDeleteVerbCheck.java │ │ │ └── OAR109ForbiddenInternalServerErrorCheck.java │ │ ├── owasp │ │ │ ├── OAR070BrokenAccessControlCheck.java │ │ │ └── OAR073RateLimitCheck.java │ │ ├── package-info.java │ │ ├── parameters │ │ │ ├── OAR019SelectParameterCheck.java │ │ │ ├── OAR020ExpandParameterCheck.java │ │ │ ├── OAR021ExcludeParameterCheck.java │ │ │ ├── OAR022OrderbyParameterCheck.java │ │ │ ├── OAR023TotalParameterCheck.java │ │ │ ├── OAR024StartParameterCheck.java │ │ │ ├── OAR025LimitParameterCheck.java │ │ │ ├── OAR026TotalParameterDefaultValueCheck.java │ │ │ ├── OAR028FilterParameterCheck.java │ │ │ ├── OAR060QueryParametersOptionalCheck.java │ │ │ └── OAR069PathParamAndQueryCheck.java │ │ ├── regex │ │ │ ├── AbstractOpenAPIGrammarNodeCheck.java │ │ │ └── OAR112RegexCheck.java │ │ ├── schemas │ │ │ ├── AbstractExplicitResponseCheck.java │ │ │ ├── AbstractSchemaCheck.java │ │ │ ├── OAR029StandardResponseSchemaCheck.java │ │ │ ├── OAR034StandardPagedResponseSchemaCheck.java │ │ │ ├── OAR080SecuritySchemasCheck.java │ │ │ └── OAR108SchemaValidatorCheck.java │ │ └── security │ │ │ ├── AbstractFormatCheck2.java │ │ │ ├── AbstractPropertiesCheck.java │ │ │ ├── OAR001MandatoryHttpsProtocolCheck.java │ │ │ ├── OAR033HttpHeadersCheck.java │ │ │ ├── OAR035UnauthorizedResponseCheck.java │ │ │ ├── OAR036SessionMechanismsCheck.java │ │ │ ├── OAR045DefinedResponseCheck.java │ │ │ ├── OAR049NoContentIn204Check.java │ │ │ ├── OAR053ResponseHeadersCheck.java │ │ │ ├── OAR054HostCheck.java │ │ │ ├── OAR072NonOKModelResponseCheck.java │ │ │ ├── OAR074NumericParameterIntegrityCheck.java │ │ │ ├── OAR075StringParameterIntegrityCheck.java │ │ │ ├── OAR076NumericFormatCheck.java │ │ │ ├── OAR078VerbsSecurityCheck.java │ │ │ ├── OAR079PathParameter404Check.java │ │ │ ├── OAR081PasswordFormatCheck.java │ │ │ ├── OAR082BinaryOrByteFormatCheck.java │ │ │ ├── OAR083ForbiddenQueryParamsCheck.java │ │ │ ├── OAR084ForbiddenFormatsInQueryCheck.java │ │ │ ├── OAR085OpenAPIVersionCheck.java │ │ │ ├── OAR096ForbiddenResponseCheck.java │ │ │ └── OAR114HttpResponseHeadersChecks.java │ │ ├── package-info.java │ │ └── utils │ │ ├── JsonNodeUtils.java │ │ └── VerbPathMatcher.java └── resources │ ├── messages │ ├── errors.properties │ └── errors_es.properties │ └── org │ └── sonar │ └── l10n │ ├── es │ └── openapi │ │ └── rules │ │ └── openapi │ │ ├── apim │ │ └── wso2 │ │ │ ├── OAR002.html │ │ │ ├── OAR002.json │ │ │ ├── OAR003.html │ │ │ ├── OAR003.json │ │ │ ├── OAR004.html │ │ │ ├── OAR004.json │ │ │ ├── OAR005.html │ │ │ ├── OAR005.json │ │ │ ├── OAR040.html │ │ │ ├── OAR040.json │ │ │ ├── OAR041.html │ │ │ └── OAR041.json │ │ ├── core │ │ ├── OAR043.html │ │ ├── OAR043.json │ │ ├── OAR044.html │ │ ├── OAR044.json │ │ ├── OAR045.html │ │ ├── OAR045.json │ │ ├── OAR046.html │ │ ├── OAR046.json │ │ ├── OAR047.html │ │ ├── OAR047.json │ │ ├── OAR048.html │ │ ├── OAR048.json │ │ ├── OAR049.html │ │ ├── OAR049.json │ │ ├── OAR050.html │ │ ├── OAR050.json │ │ ├── OAR051.html │ │ └── OAR051.json │ │ ├── examples │ │ ├── OAR031.html │ │ ├── OAR031.json │ │ ├── OAR094.html │ │ └── OAR094.json │ │ ├── format │ │ ├── OAR006.html │ │ ├── OAR006.json │ │ ├── OAR007.html │ │ ├── OAR007.json │ │ ├── OAR009.html │ │ ├── OAR009.json │ │ ├── OAR010.html │ │ ├── OAR010.json │ │ ├── OAR011.html │ │ ├── OAR011.json │ │ ├── OAR012.html │ │ ├── OAR012.json │ │ ├── OAR016.html │ │ ├── OAR016.json │ │ ├── OAR037.html │ │ ├── OAR037.json │ │ ├── OAR042.html │ │ ├── OAR042.json │ │ ├── OAR044.html │ │ ├── OAR044.json │ │ ├── OAR050.html │ │ ├── OAR050.json │ │ ├── OAR051.html │ │ ├── OAR051.json │ │ ├── OAR052.html │ │ ├── OAR052.json │ │ ├── OAR066.html │ │ ├── OAR066.json │ │ ├── OAR067.html │ │ ├── OAR067.json │ │ ├── OAR068.html │ │ ├── OAR068.json │ │ ├── OAR077.html │ │ ├── OAR077.json │ │ ├── OAR086.html │ │ ├── OAR086.json │ │ ├── OAR087.html │ │ ├── OAR087.json │ │ ├── OAR088.html │ │ ├── OAR088.json │ │ ├── OAR089.html │ │ ├── OAR089.json │ │ ├── OAR090.html │ │ ├── OAR090.json │ │ ├── OAR097.html │ │ ├── OAR097.json │ │ ├── OAR098.html │ │ ├── OAR098.json │ │ ├── OAR099.html │ │ ├── OAR099.json │ │ ├── OAR100.html │ │ ├── OAR100.json │ │ ├── OAR101.html │ │ ├── OAR101.json │ │ ├── OAR102.html │ │ ├── OAR102.json │ │ ├── OAR110.html │ │ ├── OAR110.json │ │ ├── OAR111.html │ │ └── OAR111.json │ │ ├── operations │ │ ├── OAR008.html │ │ ├── OAR008.json │ │ ├── OAR013.html │ │ ├── OAR013.json │ │ ├── OAR014.html │ │ ├── OAR014.json │ │ ├── OAR015.html │ │ ├── OAR015.json │ │ ├── OAR017.html │ │ ├── OAR017.json │ │ ├── OAR018.html │ │ ├── OAR018.json │ │ ├── OAR027.html │ │ ├── OAR027.json │ │ ├── OAR030.html │ │ ├── OAR030.json │ │ ├── OAR032.html │ │ ├── OAR032.json │ │ ├── OAR038.html │ │ ├── OAR038.json │ │ ├── OAR039.html │ │ ├── OAR039.json │ │ ├── OAR043.html │ │ ├── OAR043.json │ │ ├── OAR046.html │ │ ├── OAR046.json │ │ ├── OAR047.html │ │ ├── OAR047.json │ │ ├── OAR061.html │ │ ├── OAR061.json │ │ ├── OAR062.html │ │ ├── OAR062.json │ │ ├── OAR063.html │ │ ├── OAR063.json │ │ ├── OAR064.html │ │ ├── OAR064.json │ │ ├── OAR065.html │ │ ├── OAR065.json │ │ ├── OAR071.html │ │ ├── OAR071.json │ │ ├── OAR091.html │ │ ├── OAR091.json │ │ ├── OAR092.html │ │ ├── OAR092.json │ │ ├── OAR093.html │ │ ├── OAR093.json │ │ ├── OAR103.html │ │ ├── OAR103.json │ │ ├── OAR104.html │ │ ├── OAR104.json │ │ ├── OAR105.html │ │ ├── OAR105.json │ │ ├── OAR106.html │ │ ├── OAR106.json │ │ ├── OAR107.html │ │ ├── OAR107.json │ │ ├── OAR109.html │ │ └── OAR109.json │ │ ├── owasp │ │ ├── OAR070.html │ │ ├── OAR070.json │ │ ├── OAR073.html │ │ └── OAR073.json │ │ ├── parameters │ │ ├── OAR019.html │ │ ├── OAR019.json │ │ ├── OAR020.html │ │ ├── OAR020.json │ │ ├── OAR021.html │ │ ├── OAR021.json │ │ ├── OAR022.html │ │ ├── OAR022.json │ │ ├── OAR023.html │ │ ├── OAR023.json │ │ ├── OAR024.html │ │ ├── OAR024.json │ │ ├── OAR025.html │ │ ├── OAR025.json │ │ ├── OAR026.html │ │ ├── OAR026.json │ │ ├── OAR028.html │ │ ├── OAR028.json │ │ ├── OAR060.html │ │ ├── OAR060.json │ │ ├── OAR069.html │ │ └── OAR069.json │ │ ├── regex │ │ ├── OAR112.html │ │ └── OAR112.json │ │ ├── resources │ │ ├── OAR008.html │ │ ├── OAR008.json │ │ ├── OAR013.html │ │ ├── OAR013.json │ │ ├── OAR014.html │ │ ├── OAR014.json │ │ ├── OAR015.html │ │ ├── OAR015.json │ │ ├── OAR017.html │ │ ├── OAR017.json │ │ ├── OAR018.html │ │ ├── OAR018.json │ │ ├── OAR027.html │ │ ├── OAR027.json │ │ ├── OAR029.html │ │ ├── OAR029.json │ │ ├── OAR030.html │ │ ├── OAR030.json │ │ ├── OAR031.html │ │ ├── OAR031.json │ │ ├── OAR032.html │ │ ├── OAR032.json │ │ ├── OAR034.html │ │ ├── OAR034.json │ │ ├── OAR035.html │ │ ├── OAR035.json │ │ ├── OAR038.html │ │ ├── OAR038.json │ │ ├── OAR039.html │ │ └── OAR039.json │ │ ├── schemas │ │ ├── OAR029.html │ │ ├── OAR029.json │ │ ├── OAR034.html │ │ ├── OAR034.json │ │ ├── OAR080.html │ │ ├── OAR080.json │ │ ├── OAR108.html │ │ └── OAR108.json │ │ └── security │ │ ├── OAR001.html │ │ ├── OAR001.json │ │ ├── OAR033.html │ │ ├── OAR033.json │ │ ├── OAR035.html │ │ ├── OAR035.json │ │ ├── OAR036.html │ │ ├── OAR036.json │ │ ├── OAR045.html │ │ ├── OAR045.json │ │ ├── OAR049.html │ │ ├── OAR049.json │ │ ├── OAR053.html │ │ ├── OAR053.json │ │ ├── OAR054.html │ │ ├── OAR054.json │ │ ├── OAR072.html │ │ ├── OAR072.json │ │ ├── OAR074.html │ │ ├── OAR074.json │ │ ├── OAR075.html │ │ ├── OAR075.json │ │ ├── OAR076.html │ │ ├── OAR076.json │ │ ├── OAR078.html │ │ ├── OAR078.json │ │ ├── OAR079.html │ │ ├── OAR079.json │ │ ├── OAR081.html │ │ ├── OAR081.json │ │ ├── OAR082.html │ │ ├── OAR082.json │ │ ├── OAR083.html │ │ ├── OAR083.json │ │ ├── OAR084.html │ │ ├── OAR084.json │ │ ├── OAR085.html │ │ ├── OAR085.json │ │ ├── OAR096.html │ │ └── OAR096.json │ └── openapi │ └── rules │ └── openapi │ ├── apim │ └── wso2 │ │ ├── OAR002.html │ │ ├── OAR002.json │ │ ├── OAR003.html │ │ ├── OAR003.json │ │ ├── OAR004.html │ │ ├── OAR004.json │ │ ├── OAR005.html │ │ ├── OAR005.json │ │ ├── OAR040.html │ │ ├── OAR040.json │ │ ├── OAR041.html │ │ └── OAR041.json │ ├── core │ ├── OAR043.html │ ├── OAR043.json │ ├── OAR044.html │ ├── OAR044.json │ ├── OAR045.html │ ├── OAR045.json │ ├── OAR046.html │ ├── OAR046.json │ ├── OAR047.html │ ├── OAR047.json │ ├── OAR048.html │ ├── OAR048.json │ ├── OAR049.html │ ├── OAR049.json │ ├── OAR050.html │ ├── OAR050.json │ ├── OAR051.html │ └── OAR051.json │ ├── examples │ ├── OAR031.html │ ├── OAR031.json │ ├── OAR094.html │ └── OAR094.json │ ├── format │ ├── OAR006.html │ ├── OAR006.json │ ├── OAR007.html │ ├── OAR007.json │ ├── OAR009.html │ ├── OAR009.json │ ├── OAR010.html │ ├── OAR010.json │ ├── OAR011.html │ ├── OAR011.json │ ├── OAR012.html │ ├── OAR012.json │ ├── OAR016.html │ ├── OAR016.json │ ├── OAR037.html │ ├── OAR037.json │ ├── OAR042.html │ ├── OAR042.json │ ├── OAR044.html │ ├── OAR044.json │ ├── OAR050.html │ ├── OAR050.json │ ├── OAR051.html │ ├── OAR051.json │ ├── OAR052.html │ ├── OAR052.json │ ├── OAR066.html │ ├── OAR066.json │ ├── OAR067.html │ ├── OAR067.json │ ├── OAR068.html │ ├── OAR068.json │ ├── OAR077.html │ ├── OAR077.json │ ├── OAR086.html │ ├── OAR086.json │ ├── OAR087.html │ ├── OAR087.json │ ├── OAR088.html │ ├── OAR088.json │ ├── OAR089.html │ ├── OAR089.json │ ├── OAR090.html │ ├── OAR090.json │ ├── OAR097.html │ ├── OAR097.json │ ├── OAR098.html │ ├── OAR098.json │ ├── OAR099.html │ ├── OAR099.json │ ├── OAR100.html │ ├── OAR100.json │ ├── OAR101.html │ ├── OAR101.json │ ├── OAR102.html │ ├── OAR102.json │ ├── OAR110.html │ ├── OAR110.json │ ├── OAR111.html │ ├── OAR111.json │ ├── OAR113.html │ ├── OAR113.json │ ├── OAR115.html │ └── OAR115.json │ ├── operations │ ├── OAR008.html │ ├── OAR008.json │ ├── OAR013.html │ ├── OAR013.json │ ├── OAR014.html │ ├── OAR014.json │ ├── OAR015.html │ ├── OAR015.json │ ├── OAR017.html │ ├── OAR017.json │ ├── OAR018.html │ ├── OAR018.json │ ├── OAR027.html │ ├── OAR027.json │ ├── OAR030.html │ ├── OAR030.json │ ├── OAR032.html │ ├── OAR032.json │ ├── OAR038.html │ ├── OAR038.json │ ├── OAR039.html │ ├── OAR039.json │ ├── OAR043.html │ ├── OAR043.json │ ├── OAR046.html │ ├── OAR046.json │ ├── OAR047.html │ ├── OAR047.json │ ├── OAR048.html │ ├── OAR048.json │ ├── OAR061.html │ ├── OAR061.json │ ├── OAR062.html │ ├── OAR062.json │ ├── OAR063.html │ ├── OAR063.json │ ├── OAR064.html │ ├── OAR064.json │ ├── OAR065.html │ ├── OAR065.json │ ├── OAR071.html │ ├── OAR071.json │ ├── OAR091.html │ ├── OAR091.json │ ├── OAR092.html │ ├── OAR092.json │ ├── OAR093.html │ ├── OAR093.json │ ├── OAR103.html │ ├── OAR103.json │ ├── OAR104.html │ ├── OAR104.json │ ├── OAR105.html │ ├── OAR105.json │ ├── OAR106.html │ ├── OAR106.json │ ├── OAR107.html │ ├── OAR107.json │ ├── OAR109.html │ └── OAR109.json │ ├── owasp │ ├── OAR070.html │ ├── OAR070.json │ ├── OAR073.html │ └── OAR073.json │ ├── parameters │ ├── OAR019.html │ ├── OAR019.json │ ├── OAR020.html │ ├── OAR020.json │ ├── OAR021.html │ ├── OAR021.json │ ├── OAR022.html │ ├── OAR022.json │ ├── OAR023.html │ ├── OAR023.json │ ├── OAR024.html │ ├── OAR024.json │ ├── OAR025.html │ ├── OAR025.json │ ├── OAR026.html │ ├── OAR026.json │ ├── OAR028.html │ ├── OAR028.json │ ├── OAR060.html │ ├── OAR060.json │ ├── OAR069.html │ └── OAR069.json │ ├── regex │ ├── OAR112.html │ └── OAR112.json │ ├── resources │ ├── OAR008.html │ ├── OAR008.json │ ├── OAR013.html │ ├── OAR013.json │ ├── OAR014.html │ ├── OAR014.json │ ├── OAR015.html │ ├── OAR015.json │ ├── OAR017.html │ ├── OAR017.json │ ├── OAR018.html │ ├── OAR018.json │ ├── OAR027.html │ ├── OAR027.json │ ├── OAR029.html │ ├── OAR029.json │ ├── OAR030.html │ ├── OAR030.json │ ├── OAR031.html │ ├── OAR031.json │ ├── OAR032.html │ ├── OAR032.json │ ├── OAR034.html │ ├── OAR034.json │ ├── OAR035.html │ ├── OAR035.json │ ├── OAR038.html │ ├── OAR038.json │ ├── OAR039.html │ └── OAR039.json │ ├── schemas │ ├── OAR029.html │ ├── OAR029.json │ ├── OAR034.html │ ├── OAR034.json │ ├── OAR080.html │ ├── OAR080.json │ ├── OAR108.html │ └── OAR108.json │ └── security │ ├── OAR001.html │ ├── OAR001.json │ ├── OAR033.html │ ├── OAR033.json │ ├── OAR035.html │ ├── OAR035.json │ ├── OAR036.html │ ├── OAR036.json │ ├── OAR045.html │ ├── OAR045.json │ ├── OAR049.html │ ├── OAR049.json │ ├── OAR053.html │ ├── OAR053.json │ ├── OAR054.html │ ├── OAR054.json │ ├── OAR072.html │ ├── OAR072.json │ ├── OAR074.html │ ├── OAR074.json │ ├── OAR075.html │ ├── OAR075.json │ ├── OAR076.html │ ├── OAR076.json │ ├── OAR078.html │ ├── OAR078.json │ ├── OAR079.html │ ├── OAR079.json │ ├── OAR081.html │ ├── OAR081.json │ ├── OAR082.html │ ├── OAR082.json │ ├── OAR083.html │ ├── OAR083.json │ ├── OAR084.html │ ├── OAR084.json │ ├── OAR085.html │ ├── OAR085.json │ ├── OAR096.html │ ├── OAR096.json │ ├── OAR114.html │ └── OAR114.json └── test ├── java └── apiaddicts │ └── sonar │ └── openapi │ ├── BaseCheckTest.java │ ├── ExtendedOpenApiCheckVerifier.java │ ├── OpenAPICustomRulesDefinitionTest.java │ └── checks │ ├── apim │ └── wso2 │ │ ├── OAR002ValidWso2ScopesCheckTest.java │ │ ├── OAR003DefinedWso2ScopesDescriptionCheckTest.java │ │ ├── OAR004ValidWso2ScopesRolesCheckTest.java │ │ ├── OAR005UndefinedWso2ScopeUseCheckTest.java │ │ ├── OAR040StandardWso2ScopesNameCheckTest.java │ │ └── OAR041UndefinedAuthTypeForWso2ScopeCheckTest.java │ ├── examples │ ├── OAR031ExamplesCheckTest.java │ └── OAR094UseExamplesCheckTest.java │ ├── format │ ├── OAR006UndefinedRequestMediaTypeCheckTest.java │ ├── OAR007UndefinedResponseMediaTypeCheckTest.java │ ├── OAR009DefaultRequestMediaTypeCheckTest.java │ ├── OAR010DefaultResponseMediaTypeCheckTest.java │ ├── OAR011UrlNamingConventionCheckTest.java │ ├── OAR012ParameterNamingConventionCheckTest.java │ ├── OAR016NumericFormatCheckTest.java │ ├── OAR037StringFormatCheckTest.java │ ├── OAR042BasePathCheckTest.java │ ├── OAR044MediaTypeCheckTest.java │ ├── OAR050ProvideOpSummaryCheckTest.java │ ├── OAR051DescriptionDiffersSummaryCheckTest.java │ ├── OAR052UndefinedNumericFormatCheckTest.java │ ├── OAR066SnakeCaseNamingConventionCheckTest.java │ ├── OAR067CamelCaseNamingConventionCheckTest.java │ ├── OAR068PascalCaseNamingConventionCheckTest.java │ ├── OAR077ParametersInQuerySnakeCaseCheckTest.java │ ├── OAR086DescriptionFormatCheckTest.java │ ├── OAR087SummaryFormatCheckTest.java │ ├── OAR088RefParamCheckTest.java │ ├── OAR089RefRequestBodyCheckTest.java │ ├── OAR090RefResponseCheckTest.java │ ├── OAR097ShortBasePathCheckTest.java │ ├── OAR098LongBasePathCheckTest.java │ ├── OAR099ApiPrefixBasePathCheckTest.java │ ├── OAR100LastPartBasePathCheckTest.java │ ├── OAR101FirstPartBasePathCheckTest.java │ ├── OAR102SecondPartBasePathCheckTest.java │ ├── OAR110LicenseInformationCheckTest.java │ ├── OAR111ContactInformationCheckTest.java │ ├── OAR113CustomFieldCheckTest.java │ └── OAR115VerifyRequiredFieldsTest.java │ ├── operations │ ├── OAR008AllowedHttpVerbCheckTest.java │ ├── OAR013DefaultResponseCheckTest.java │ ├── OAR014ResourceLevelWithinNonSuggestedRangeCheckTest.java │ ├── OAR015ResourceLevelMaxAllowedCheckTest.java │ ├── OAR017ResourcePathCheckTest.java │ ├── OAR018ResourcesByVerbCheckTest.java │ ├── OAR027PostResponseLocationHeaderCheckTest.java │ ├── OAR030StatusEndpointCheckTest.java │ ├── OAR032AmbiguousElementsPathCheckTest.java │ ├── OAR038StandardCreateResponseCheckTest.java │ ├── OAR039StandardResponseCodesCheckTest.java │ ├── OAR043ParsingErrorCheckTest.java │ ├── OAR046DeclaredTagCheckTest.java │ ├── OAR047DocumentedTagCheckTest.java │ ├── OAR048AtMostOneBodyParameterCheckTest.java │ ├── OAR061GetMethodCheckTest.java │ ├── OAR062PostMethodCheckTest.java │ ├── OAR063PutMethodCheckTest.java │ ├── OAR064PatchMethodCheckTest.java │ ├── OAR065DeleteMethodCheckTest.java │ ├── OAR071GetQueryParamsDefinedCheckTest.java │ ├── OAR091ParamOnlyRefCheckTest.java │ ├── OAR092RequestBodyOnlyRefCheckTest.java │ ├── OAR093ResponseOnlyRefCheckTest.java │ ├── OAR103ResourcesByGetVerbCheckTest.java │ ├── OAR104ResourcesByPostVerbCheckTest.java │ ├── OAR105ResourcesByPutVerbCheckTest.java │ ├── OAR106ResourcesByPatchVerbCheckTest.java │ ├── OAR107ResourcesByDeleteVerbCheckTest.java │ └── OAR109ForbiddenInternalServerErrorCheckTest.java │ ├── owasp │ ├── OAR070BrokenAccessControlCheckTest.java │ └── OAR073RateLimitCheckTest.java │ ├── parameters │ ├── OAR019SelectParameterCheckTest.java │ ├── OAR020ExpandParameterCheckTest.java │ ├── OAR021ExcludeParameterCheckTest.java │ ├── OAR022OrderbyParameterCheckTest.java │ ├── OAR023TotalParameterCheckTest.java │ ├── OAR024StartParameterCheckTest.java │ ├── OAR025LimitParameterCheckTest.java │ ├── OAR026TotalParameterDefaultValueCheckTest.java │ ├── OAR028FilterParameterCheckTest.java │ ├── OAR060QueryParametersOptionalCheckTest.java │ └── OAR069PathParamAndQueryCheckTest.java │ ├── regex │ └── OAR112RegexCheckTest.java │ ├── schemas │ ├── OAR029StandardResponseSchemaCheckTest.java │ ├── OAR034StandardPagedResponseSchemaCheckTest.java │ └── OAR108SchemaValidatorCheckTest.java │ └── security │ ├── OAR001MandatoryHttpsProtocolCheckTest.java │ ├── OAR033HttpHeadersCheckTest.java │ ├── OAR035AuthorizationResponsesCheckTest.java │ ├── OAR036SessionMechanismCheckTest.java │ ├── OAR045DefinedResponseCheckTest.java │ ├── OAR049NoContentIn204CheckTest.java │ ├── OAR053ResponseHeadersCheckTest.java │ ├── OAR054HostCheckTest.java │ ├── OAR072NonOKModelResponseCheckTest.java │ ├── OAR074NumericParameterIntegrityCheckTest.java │ ├── OAR075StringParameterIntegrityCheckTest.java │ ├── OAR076NumericFormatCheckTest.java │ ├── OAR078VerbsSecurityCheckTest.java │ ├── OAR079PathParameter404CheckTest.java │ ├── OAR081PasswordFormatCheckTest.java │ ├── OAR082BinaryOrByteFormatCheckTest.java │ ├── OAR083ForbiddenQueryParamsCheckTest.java │ ├── OAR084ForbiddenFormatsInQueryCheckTest.java │ ├── OAR085OpenAPIVersionCheckTest.java │ ├── OAR096ForbiddenResponseCheckTest.java │ └── OAR114HttpResponseHeadersChecksTest.java └── resources ├── checks ├── v2 │ ├── apim │ │ └── wso2 │ │ │ ├── OAR002 │ │ │ ├── with-empty-scopes.json │ │ │ ├── with-empty-scopes.yaml │ │ │ ├── with-null-scopes.json │ │ │ ├── with-null-scopes.yaml │ │ │ ├── with-scopes.json │ │ │ ├── with-scopes.yaml │ │ │ ├── without-scopes.json │ │ │ ├── without-scopes.yaml │ │ │ ├── without-security.json │ │ │ └── without-security.yaml │ │ │ ├── OAR003 │ │ │ ├── with-description.json │ │ │ ├── with-description.yaml │ │ │ ├── with-null-description.json │ │ │ ├── with-null-description.yaml │ │ │ ├── without-description.json │ │ │ └── without-description.yaml │ │ │ ├── OAR004 │ │ │ ├── with-invalid-roles.json │ │ │ ├── with-invalid-roles.yaml │ │ │ ├── with-valid-roles.json │ │ │ └── with-valid-roles.yaml │ │ │ ├── OAR005 │ │ │ ├── with-correct-operation-scope.json │ │ │ ├── with-correct-operation-scope.yaml │ │ │ ├── with-null-operation-scope.json │ │ │ ├── with-null-operation-scope.yaml │ │ │ ├── with-wrong-operation-scope.json │ │ │ └── with-wrong-operation-scope.yaml │ │ │ ├── OAR040 │ │ │ ├── invalid.json │ │ │ ├── invalid.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ │ └── OAR041 │ │ │ ├── with-scope-and-auth.json │ │ │ ├── with-scope-and-auth.yaml │ │ │ ├── with-scope-without-auth.json │ │ │ ├── with-scope-without-auth.yaml │ │ │ ├── without-scope-and-auth.json │ │ │ └── without-scope-and-auth.yaml │ ├── core │ │ ├── OAR044 │ │ │ ├── media-type.json │ │ │ └── media-type.yaml │ │ ├── OAR045 │ │ │ ├── defined-response.json │ │ │ └── defined-response.yaml │ │ ├── OAR046 │ │ │ ├── declared-tag.json │ │ │ └── declared-tag.yaml │ │ ├── OAR047 │ │ │ ├── documented-tag.json │ │ │ └── documented-tag.yaml │ │ ├── OAR048 │ │ │ ├── many-body-params.json │ │ │ └── many-body-params.yaml │ │ ├── OAR049 │ │ │ ├── no-content-in-204.json │ │ │ └── no-content-in-204.yaml │ │ ├── OAR050 │ │ │ ├── provide-summary.json │ │ │ └── provide-summary.yaml │ │ └── OAR051 │ │ │ ├── different-description.json │ │ │ └── different-description.yaml │ ├── examples │ │ ├── OAR031 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── without-examples.json │ │ │ └── without-examples.yaml │ │ └── OAR094 │ │ │ ├── invalid-example.json │ │ │ ├── invalid-example.yaml │ │ │ ├── valid-example.json │ │ │ └── valid-example.yaml │ ├── format │ │ ├── OAR006 │ │ │ ├── with-default-and-specific.json │ │ │ ├── with-default-and-specific.yaml │ │ │ ├── with-default.json │ │ │ ├── with-default.yaml │ │ │ ├── with-specific.json │ │ │ ├── with-specific.yaml │ │ │ ├── without-anything.json │ │ │ └── without-anything.yaml │ │ ├── OAR007 │ │ │ ├── with-default-and-specific.json │ │ │ ├── with-default-and-specific.yaml │ │ │ ├── with-default.json │ │ │ ├── with-default.yaml │ │ │ ├── with-specific.json │ │ │ ├── with-specific.yaml │ │ │ ├── without-anything.json │ │ │ └── without-anything.yaml │ │ ├── OAR009 │ │ │ ├── with-default-and-specific.json │ │ │ ├── with-default-and-specific.yaml │ │ │ ├── with-default.json │ │ │ ├── with-default.yaml │ │ │ ├── with-specific.json │ │ │ ├── with-specific.yaml │ │ │ ├── with-wrong-default-and-specific.json │ │ │ ├── with-wrong-default-and-specific.yaml │ │ │ ├── with-wrong-default.json │ │ │ ├── with-wrong-default.yaml │ │ │ ├── without-anything.json │ │ │ └── without-anything.yaml │ │ ├── OAR010 │ │ │ ├── with-default-and-specific.json │ │ │ ├── with-default-and-specific.yaml │ │ │ ├── with-default.json │ │ │ ├── with-default.yaml │ │ │ ├── with-specific.json │ │ │ ├── with-specific.yaml │ │ │ ├── with-wrong-default-and-specific.json │ │ │ ├── with-wrong-default-and-specific.yaml │ │ │ ├── with-wrong-default.json │ │ │ ├── with-wrong-default.yaml │ │ │ ├── without-anything.json │ │ │ └── without-anything.yaml │ │ ├── OAR011 │ │ │ ├── base-path-ok.json │ │ │ ├── base-path-ok.yaml │ │ │ ├── base-path-wrong.json │ │ │ ├── base-path-wrong.yaml │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR012 │ │ │ ├── camel-case-plain.json │ │ │ ├── camel-case-plain.yaml │ │ │ ├── camel-case-with-$ref.json │ │ │ ├── camel-case-with-$ref.yaml │ │ │ ├── kebab-case-plain.json │ │ │ ├── kebab-case-plain.yaml │ │ │ ├── kebab-case-with-$ref.json │ │ │ ├── kebab-case-with-$ref.yaml │ │ │ ├── snake-case-plain.json │ │ │ ├── snake-case-plain.yaml │ │ │ ├── snake-case-with-$ref.json │ │ │ └── snake-case-with-$ref.yaml │ │ ├── OAR016 │ │ │ ├── nested.json │ │ │ ├── nested.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref.json │ │ │ └── with-$ref.yaml │ │ ├── OAR037 │ │ │ ├── nested.json │ │ │ ├── nested.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref.json │ │ │ └── with-$ref.yaml │ │ ├── OAR042 │ │ │ ├── incorrect-version.json │ │ │ ├── incorrect-version.yaml │ │ │ ├── too-long.json │ │ │ ├── too-long.yaml │ │ │ ├── too-short.json │ │ │ ├── too-short.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── without-api-prefix.json │ │ │ └── without-api-prefix.yaml │ │ ├── OAR044 │ │ │ ├── media-type.json │ │ │ └── media-type.yaml │ │ ├── OAR050 │ │ │ ├── provide-summary.json │ │ │ └── provide-summary.yaml │ │ ├── OAR051 │ │ │ ├── different-description.json │ │ │ └── different-description.yaml │ │ ├── OAR052 │ │ │ ├── nested.json │ │ │ ├── nested.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref.json │ │ │ └── with-$ref.yaml │ │ ├── OAR066 │ │ │ ├── snake-case-error.json │ │ │ ├── snake-case-error.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR067 │ │ │ ├── camel-case-error.json │ │ │ ├── camel-case-error.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR068 │ │ │ ├── pascal-case-error.json │ │ │ ├── pascal-case-error.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR077 │ │ │ ├── not-valid-in-query.json │ │ │ ├── not-valid-in-query.yaml │ │ │ ├── valid-in-query.json │ │ │ └── valid-in-query.yaml │ │ ├── OAR086 │ │ │ ├── invalid-example.json │ │ │ ├── invalid-example.yaml │ │ │ ├── valid-example.json │ │ │ └── valid-example.yaml │ │ ├── OAR087 │ │ │ ├── invalid-example.json │ │ │ ├── invalid-example.yaml │ │ │ ├── valid-example.json │ │ │ └── valid-example.yaml │ │ ├── OAR088 │ │ │ ├── invalid-ref.json │ │ │ ├── invalid-ref.yaml │ │ │ ├── valid-ref.json │ │ │ └── valid-ref.yaml │ │ ├── OAR090 │ │ │ ├── invalid-ref.json │ │ │ ├── invalid-ref.yaml │ │ │ ├── valid-ref.json │ │ │ └── valid-ref.yaml │ │ ├── OAR097 │ │ │ ├── too-short.json │ │ │ ├── too-short.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR098 │ │ │ ├── too-long.json │ │ │ ├── too-long.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR099 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── without-api-prefix.json │ │ │ └── without-api-prefix.yaml │ │ ├── OAR100 │ │ │ ├── incorrect-version.json │ │ │ ├── incorrect-version.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR101 │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR102 │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR110 │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR111 │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR113 │ │ │ ├── invalid.json │ │ │ ├── invalid.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ └── OAR115 │ │ │ ├── invalid.json │ │ │ ├── invalid.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ ├── operations │ │ ├── OAR008 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR013 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR014 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR015 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR017 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR018 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR027 │ │ │ ├── no-post.json │ │ │ ├── no-post.yaml │ │ │ ├── post-201-with-location.json │ │ │ ├── post-201-with-location.yaml │ │ │ ├── post-201-with-other-headers.json │ │ │ ├── post-201-with-other-headers.yaml │ │ │ ├── post-201-without-location.json │ │ │ ├── post-201-without-location.yaml │ │ │ ├── post-no-201.json │ │ │ └── post-no-201.yaml │ │ ├── OAR030 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-status-without-get.json │ │ │ ├── with-status-without-get.yaml │ │ │ ├── without-status.json │ │ │ └── without-status.yaml │ │ ├── OAR032 │ │ │ ├── forbidden-names.json │ │ │ ├── forbidden-names.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR038 │ │ │ ├── valid-multiple-properties.json │ │ │ ├── valid-multiple-properties.yaml │ │ │ ├── valid-one-property.json │ │ │ ├── valid-one-property.yaml │ │ │ ├── with-properties-empty.json │ │ │ ├── with-properties-empty.yaml │ │ │ ├── without-data.json │ │ │ ├── without-data.yaml │ │ │ ├── without-properties.json │ │ │ ├── without-properties.yaml │ │ │ ├── without-schema.json │ │ │ └── without-schema.yaml │ │ ├── OAR039 │ │ │ ├── missing-codes.json │ │ │ ├── missing-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR046 │ │ │ ├── declared-tag.json │ │ │ └── declared-tag.yaml │ │ ├── OAR047 │ │ │ ├── documented-tag.json │ │ │ └── documented-tag.yaml │ │ ├── OAR048 │ │ │ ├── many-body-params.json │ │ │ └── many-body-params.yaml │ │ ├── OAR061 │ │ │ ├── insuficent-response-codes.json │ │ │ ├── insuficent-response-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR062 │ │ │ ├── insuficent-response-codes.json │ │ │ ├── insuficent-response-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR063 │ │ │ ├── insuficent-response-codes.json │ │ │ ├── insuficent-response-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR064 │ │ │ ├── insuficent-response-codes.json │ │ │ ├── insuficent-response-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR065 │ │ │ ├── insuficent-response-codes.json │ │ │ ├── insuficent-response-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR071 │ │ │ ├── missing-query-params.json │ │ │ ├── missing-query-params.yaml │ │ │ ├── valid-query-params.json │ │ │ └── valid-query-params.yaml │ │ ├── OAR091 │ │ │ ├── no-ref.json │ │ │ ├── no-ref.yaml │ │ │ ├── with-ref.json │ │ │ └── with-ref.yaml │ │ ├── OAR093 │ │ │ ├── no-ref.json │ │ │ ├── no-ref.yaml │ │ │ ├── with-ref.json │ │ │ └── with-ref.yaml │ │ ├── OAR103 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR104 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR105 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR106 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR107 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ └── OAR109 │ │ │ ├── valid.json │ │ │ └── valid.yaml │ ├── owasp │ │ ├── OAR070 │ │ │ ├── no-numeric.json │ │ │ ├── no-numeric.yaml │ │ │ ├── numeric.json │ │ │ └── numeric.yaml │ │ └── OAR073 │ │ │ ├── no-rate-limit.json │ │ │ ├── no-rate-limit.yaml │ │ │ ├── rate-limit.json │ │ │ └── rate-limit.yaml │ ├── parameters │ │ ├── OAR019 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── with-ref.json │ │ │ ├── with-ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR020 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── excluded2.json │ │ │ ├── excluded2.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain-without2.json │ │ │ ├── plain-without2.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── plain2.json │ │ │ ├── plain2.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── with-ref.json │ │ │ ├── with-ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR021 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── with-ref.json │ │ │ ├── with-ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR022 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── with-ref.json │ │ │ ├── with-ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR023 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── with-ref.json │ │ │ ├── with-ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR024 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── with-ref.json │ │ │ ├── with-ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR025 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── with-ref.json │ │ │ ├── with-ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR026 │ │ │ ├── plain-with-$total-with-defval-false.json │ │ │ ├── plain-with-$total-with-defval-false.yaml │ │ │ ├── plain-with-$total-with-defval-true.json │ │ │ ├── plain-with-$total-with-defval-true.yaml │ │ │ ├── plain-with-$total-without-defval.json │ │ │ ├── plain-with-$total-without-defval.yaml │ │ │ ├── plain-without-$total.json │ │ │ ├── plain-without-$total.yaml │ │ │ ├── with-$ref-with-$total-with-defval-false.json │ │ │ ├── with-$ref-with-$total-with-defval-false.yaml │ │ │ ├── with-$ref-with-$total-with-defval-true.json │ │ │ ├── with-$ref-with-$total-with-defval-true.yaml │ │ │ ├── with-$ref-with-$total-without-defval.json │ │ │ ├── with-$ref-with-$total-without-defval.yaml │ │ │ ├── with-$ref-without-$total.json │ │ │ ├── with-$ref-without-$total.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR028 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR060 │ │ │ ├── required-false.json │ │ │ ├── required-false.yaml │ │ │ ├── required-true.json │ │ │ └── required-true.yaml │ │ └── OAR069 │ │ │ ├── bad-request400.json │ │ │ ├── bad-request400.yaml │ │ │ ├── no-bad-request400.json │ │ │ └── no-bad-request400.yaml │ ├── regex │ │ └── OAR112 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ ├── resources │ │ ├── OAR008 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR013 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR014 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR015 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR017 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR018 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR027 │ │ │ ├── no-post.json │ │ │ ├── no-post.yaml │ │ │ ├── post-201-with-location.json │ │ │ ├── post-201-with-location.yaml │ │ │ ├── post-201-with-other-headers.json │ │ │ ├── post-201-with-other-headers.yaml │ │ │ ├── post-201-without-location.json │ │ │ ├── post-201-without-location.yaml │ │ │ ├── post-no-201.json │ │ │ └── post-no-201.yaml │ │ ├── OAR029 │ │ │ ├── valid-all-of-md.json │ │ │ ├── valid-all-of-md.yaml │ │ │ ├── valid-all-of.json │ │ │ ├── valid-all-of.yaml │ │ │ ├── valid-md.json │ │ │ ├── valid-md.yaml │ │ │ ├── valid-r.json │ │ │ ├── valid-r.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-error-with-properties-wrong-type-r.json │ │ │ ├── with-error-with-properties-wrong-type-r.yaml │ │ │ ├── with-error-without-properties-r.json │ │ │ ├── with-error-without-properties-r.yaml │ │ │ ├── with-error-wrong-type-r.json │ │ │ ├── with-error-wrong-type-r.yaml │ │ │ ├── with-result-with-properties-wrong-type-md.json │ │ │ ├── with-result-with-properties-wrong-type-md.yaml │ │ │ ├── with-result-without-properties-md.json │ │ │ ├── with-result-without-properties-md.yaml │ │ │ ├── with-result-wrong-type-md.json │ │ │ ├── with-result-wrong-type-md.yaml │ │ │ ├── with-status-with-properties-wrong-type.json │ │ │ ├── with-status-with-properties-wrong-type.yaml │ │ │ ├── with-status-without-properties.json │ │ │ ├── with-status-without-properties.yaml │ │ │ ├── with-status-wrong-type.json │ │ │ ├── with-status-wrong-type.yaml │ │ │ ├── without-data-md.json │ │ │ ├── without-data-md.yaml │ │ │ ├── without-data.json │ │ │ ├── without-data.yaml │ │ │ ├── without-error-r.json │ │ │ ├── without-error-r.yaml │ │ │ ├── without-payload-r.json │ │ │ ├── without-payload-r.yaml │ │ │ ├── without-required-fields-md.json │ │ │ ├── without-required-fields-md.yaml │ │ │ ├── without-required-fields-r.json │ │ │ ├── without-required-fields-r.yaml │ │ │ ├── without-required-fields.json │ │ │ ├── without-required-fields.yaml │ │ │ ├── without-result-md.json │ │ │ ├── without-result-md.yaml │ │ │ ├── without-status.json │ │ │ └── without-status.yaml │ │ ├── OAR030 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-status-without-get.json │ │ │ ├── with-status-without-get.yaml │ │ │ ├── without-status.json │ │ │ └── without-status.yaml │ │ ├── OAR031 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── without-examples.json │ │ │ └── without-examples.yaml │ │ ├── OAR032 │ │ │ ├── forbidden-names.json │ │ │ ├── forbidden-names.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR034 │ │ │ ├── valid-all-of.json │ │ │ ├── valid-all-of.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-links-without-properties.json │ │ │ ├── with-links-without-properties.yaml │ │ │ ├── with-paging-with-properties-wrong-types.json │ │ │ ├── with-paging-with-properties-wrong-types.yaml │ │ │ ├── with-paging-without-properties.json │ │ │ ├── with-paging-without-properties.yaml │ │ │ ├── with-paging-wrong-type.json │ │ │ ├── with-paging-wrong-type.yaml │ │ │ ├── without-links-required-fields.json │ │ │ ├── without-links-required-fields.yaml │ │ │ ├── without-pagination-required-fields.json │ │ │ ├── without-pagination-required-fields.yaml │ │ │ ├── without-paging.json │ │ │ └── without-paging.yaml │ │ ├── OAR035 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── without-authorization-responses.json │ │ │ └── without-authorization-responses.yaml │ │ ├── OAR038 │ │ │ ├── valid-multiple-properties.json │ │ │ ├── valid-multiple-properties.yaml │ │ │ ├── valid-one-property.json │ │ │ ├── valid-one-property.yaml │ │ │ ├── with-properties-empty.json │ │ │ ├── with-properties-empty.yaml │ │ │ ├── without-data.json │ │ │ ├── without-data.yaml │ │ │ ├── without-properties.json │ │ │ ├── without-properties.yaml │ │ │ ├── without-schema.json │ │ │ └── without-schema.yaml │ │ └── OAR039 │ │ │ ├── missing-codes.json │ │ │ ├── missing-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ ├── schemas │ │ ├── OAR029 │ │ │ ├── valid-all-of-md.json │ │ │ ├── valid-all-of-md.yaml │ │ │ ├── valid-all-of.json │ │ │ ├── valid-all-of.yaml │ │ │ ├── valid-md.json │ │ │ ├── valid-md.yaml │ │ │ ├── valid-r.json │ │ │ ├── valid-r.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-error-with-properties-wrong-type-r.json │ │ │ ├── with-error-with-properties-wrong-type-r.yaml │ │ │ ├── with-error-without-properties-r.json │ │ │ ├── with-error-without-properties-r.yaml │ │ │ ├── with-error-wrong-type-r.json │ │ │ ├── with-error-wrong-type-r.yaml │ │ │ ├── with-result-with-properties-wrong-type-md.json │ │ │ ├── with-result-with-properties-wrong-type-md.yaml │ │ │ ├── with-result-without-properties-md.json │ │ │ ├── with-result-without-properties-md.yaml │ │ │ ├── with-result-wrong-type-md.json │ │ │ ├── with-result-wrong-type-md.yaml │ │ │ ├── with-status-with-properties-wrong-type.json │ │ │ ├── with-status-with-properties-wrong-type.yaml │ │ │ ├── with-status-without-properties.json │ │ │ ├── with-status-without-properties.yaml │ │ │ ├── with-status-wrong-type.json │ │ │ ├── with-status-wrong-type.yaml │ │ │ ├── without-data-md.json │ │ │ ├── without-data-md.yaml │ │ │ ├── without-data.json │ │ │ ├── without-data.yaml │ │ │ ├── without-error-r.json │ │ │ ├── without-error-r.yaml │ │ │ ├── without-payload-r.json │ │ │ ├── without-payload-r.yaml │ │ │ ├── without-required-fields-md.json │ │ │ ├── without-required-fields-md.yaml │ │ │ ├── without-required-fields-r.json │ │ │ ├── without-required-fields-r.yaml │ │ │ ├── without-required-fields.json │ │ │ ├── without-required-fields.yaml │ │ │ ├── without-result-md.json │ │ │ ├── without-result-md.yaml │ │ │ ├── without-status.json │ │ │ └── without-status.yaml │ │ ├── OAR034 │ │ │ ├── valid-all-of.json │ │ │ ├── valid-all-of.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-links-without-properties.json │ │ │ ├── with-links-without-properties.yaml │ │ │ ├── with-paging-with-properties-wrong-types.json │ │ │ ├── with-paging-with-properties-wrong-types.yaml │ │ │ ├── with-paging-without-properties.json │ │ │ ├── with-paging-without-properties.yaml │ │ │ ├── with-paging-wrong-type.json │ │ │ ├── with-paging-wrong-type.yaml │ │ │ ├── without-links-required-fields.json │ │ │ ├── without-links-required-fields.yaml │ │ │ ├── without-pagination-required-fields.json │ │ │ ├── without-pagination-required-fields.yaml │ │ │ ├── without-paging.json │ │ │ └── without-paging.yaml │ │ ├── OAR080 │ │ │ ├── .gitkeep │ │ │ ├── with-security.json │ │ │ ├── with-security.yaml │ │ │ ├── without-security.json │ │ │ └── without-security.yaml │ │ └── OAR108 │ │ │ ├── invalid.json │ │ │ ├── invalid.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ └── security │ │ ├── OAR001 │ │ ├── with-schemes.json │ │ ├── with-schemes.yaml │ │ ├── without-schemes.json │ │ └── without-schemes.yaml │ │ ├── OAR033 │ │ ├── valid.json │ │ ├── valid.yaml │ │ ├── with-forbidden-params.json │ │ ├── with-forbidden-params.yaml │ │ ├── without-required-params.json │ │ └── without-required-params.yaml │ │ ├── OAR035 │ │ ├── valid.json │ │ ├── valid.yaml │ │ ├── without-authorization-responses.json │ │ └── without-authorization-responses.yaml │ │ ├── OAR036 │ │ ├── valid.json │ │ ├── valid.yaml │ │ ├── with-cookie.json │ │ └── with-cookie.yaml │ │ ├── OAR045 │ │ ├── defined-response.json │ │ └── defined-response.yaml │ │ ├── OAR049 │ │ ├── no-content-in-204.json │ │ └── no-content-in-204.yaml │ │ ├── OAR053 │ │ ├── valid.json │ │ └── valid.yaml │ │ ├── OAR054 │ │ ├── valid.json │ │ └── valid.yaml │ │ ├── OAR072 │ │ ├── no-stack-trace.json │ │ ├── no-stack-trace.yaml │ │ ├── with-stack-trace.json │ │ └── with-stack-trace.yaml │ │ ├── OAR074 │ │ ├── no-restrictions.json │ │ ├── no-restrictions.yaml │ │ ├── with-restrictions.json │ │ └── with-restrictions.yaml │ │ ├── OAR075 │ │ ├── no-restrictions.json │ │ ├── no-restrictions.yaml │ │ ├── with-restrictions.json │ │ └── with-restrictions.yaml │ │ ├── OAR076 │ │ ├── nested.json │ │ ├── nested.yaml │ │ ├── plain.json │ │ ├── plain.yaml │ │ ├── with-$ref.json │ │ └── with-$ref.yaml │ │ ├── OAR078 │ │ ├── no-security.json │ │ ├── no-security.yaml │ │ ├── with-security.json │ │ └── with-security.yaml │ │ ├── OAR079 │ │ ├── bad-request404.json │ │ ├── bad-request404.yaml │ │ ├── no-bad-request404.json │ │ └── no-bad-request404.yaml │ │ ├── OAR081 │ │ ├── .gitkeep │ │ ├── not-valid-password.json │ │ ├── not-valid-password.yaml │ │ ├── valid-password.json │ │ ├── valid-password.yaml │ │ ├── valid-with-components.json │ │ └── valid-with-components.yaml │ │ ├── OAR082 │ │ ├── .gitkeep │ │ ├── valid-format.json │ │ └── valid-format.yaml │ │ ├── OAR083 │ │ ├── forbidden-query-params.json │ │ ├── forbidden-query-params.yaml │ │ ├── valid-query-params.json │ │ └── valid-query-params.yaml │ │ ├── OAR084 │ │ ├── forbidden-query-formats.json │ │ ├── forbidden-query-formats.yaml │ │ ├── valid-query-formats.json │ │ └── valid-query-formats.yaml │ │ ├── OAR085 │ │ ├── invalid-openapi-version.json │ │ ├── invalid-openapi-version.yaml │ │ ├── valid-openapi-version.json │ │ └── valid-openapi-version.yaml │ │ ├── OAR096 │ │ ├── valid.json │ │ ├── valid.yaml │ │ ├── without-authorization-responses.json │ │ └── without-authorization-responses.yaml │ │ └── OAR114 │ │ ├── valid.json │ │ ├── valid.yaml │ │ ├── with-forbidden-params.json │ │ ├── with-forbidden-params.yaml │ │ ├── without-required-params.json │ │ └── without-required-params.yaml ├── v3 │ ├── apim │ │ └── wso2 │ │ │ ├── OAR002 │ │ │ ├── with-empty-scopes.json │ │ │ ├── with-empty-scopes.yaml │ │ │ ├── with-null-scopes.json │ │ │ ├── with-null-scopes.yaml │ │ │ ├── with-scopes.json │ │ │ ├── with-scopes.yaml │ │ │ ├── without-scopes.json │ │ │ ├── without-scopes.yaml │ │ │ ├── without-security.json │ │ │ └── without-security.yaml │ │ │ ├── OAR003 │ │ │ ├── with-description.json │ │ │ ├── with-description.yaml │ │ │ ├── with-null-description.json │ │ │ ├── with-null-description.yaml │ │ │ ├── without-description.json │ │ │ └── without-description.yaml │ │ │ ├── OAR004 │ │ │ ├── with-invalid-roles.json │ │ │ ├── with-invalid-roles.yaml │ │ │ ├── with-valid-roles.json │ │ │ └── with-valid-roles.yaml │ │ │ ├── OAR005 │ │ │ ├── with-correct-operation-scope.json │ │ │ ├── with-correct-operation-scope.yaml │ │ │ ├── with-null-operation-scope.json │ │ │ ├── with-null-operation-scope.yaml │ │ │ ├── with-wrong-operation-scope.json │ │ │ └── with-wrong-operation-scope.yaml │ │ │ ├── OAR040 │ │ │ ├── invalid.json │ │ │ ├── invalid.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ │ └── OAR041 │ │ │ ├── with-scope-and-auth.json │ │ │ ├── with-scope-and-auth.yaml │ │ │ ├── with-scope-without-auth.json │ │ │ ├── with-scope-without-auth.yaml │ │ │ ├── without-scope-and-auth.json │ │ │ └── without-scope-and-auth.yaml │ ├── core │ │ ├── OAR044 │ │ │ ├── media-type.json │ │ │ └── media-type.yaml │ │ ├── OAR046 │ │ │ ├── declared-tag.json │ │ │ └── declared-tag.yaml │ │ ├── OAR047 │ │ │ ├── documented-tag.json │ │ │ └── documented-tag.yaml │ │ ├── OAR049 │ │ │ ├── no-content-in-204.json │ │ │ └── no-content-in-204.yaml │ │ ├── OAR050 │ │ │ ├── provide-summary.json │ │ │ └── provide-summary.yaml │ │ └── OAR051 │ │ │ ├── different-description.json │ │ │ └── different-description.yaml │ ├── examples │ │ ├── OAR031 │ │ │ ├── externalref.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── without-examples.json │ │ │ └── without-examples.yaml │ │ └── OAR094 │ │ │ ├── externalref.yaml │ │ │ ├── invalid-example.json │ │ │ ├── invalid-example.yaml │ │ │ ├── valid-example.json │ │ │ └── valid-example.yaml │ ├── format │ │ ├── OAR006 │ │ │ ├── without-anything.json │ │ │ └── without-anything.yaml │ │ ├── OAR007 │ │ │ ├── without-anything.json │ │ │ └── without-anything.yaml │ │ ├── OAR009 │ │ │ ├── operation-not-allows-request-body.json │ │ │ ├── operation-not-allows-request-body.yaml │ │ │ ├── with-default-and-$ref.json │ │ │ ├── with-default-and-$ref.yaml │ │ │ ├── with-default-and-specific.json │ │ │ ├── with-default-and-specific.yaml │ │ │ ├── with-specific.json │ │ │ ├── with-specific.yaml │ │ │ ├── with-wrong-default-and-specific.json │ │ │ ├── with-wrong-default-and-specific.yaml │ │ │ ├── with-wrong-default.json │ │ │ ├── with-wrong-default.yaml │ │ │ ├── without-anything.json │ │ │ └── without-anything.yaml │ │ ├── OAR010 │ │ │ ├── with-default-and-$ref.json │ │ │ ├── with-default-and-$ref.yaml │ │ │ ├── with-default-and-specific.json │ │ │ ├── with-default-and-specific.yaml │ │ │ ├── with-specific.json │ │ │ ├── with-specific.yaml │ │ │ ├── with-wrong-default-and-specific.json │ │ │ ├── with-wrong-default-and-specific.yaml │ │ │ ├── with-wrong-default.json │ │ │ ├── with-wrong-default.yaml │ │ │ ├── without-anything.json │ │ │ └── without-anything.yaml │ │ ├── OAR011 │ │ │ ├── base-path-ok.json │ │ │ ├── base-path-ok.yaml │ │ │ ├── base-path-wrong.json │ │ │ ├── base-path-wrong.yaml │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR012 │ │ │ ├── camel-case-plain.json │ │ │ ├── camel-case-plain.yaml │ │ │ ├── camel-case-with-$ref.json │ │ │ ├── camel-case-with-$ref.yaml │ │ │ ├── kebab-case-plain.json │ │ │ ├── kebab-case-plain.yaml │ │ │ ├── kebab-case-with-$ref.json │ │ │ ├── kebab-case-with-$ref.yaml │ │ │ ├── snake-case-plain.json │ │ │ ├── snake-case-plain.yaml │ │ │ ├── snake-case-with-$ref.json │ │ │ └── snake-case-with-$ref.yaml │ │ ├── OAR016 │ │ │ ├── nested.json │ │ │ ├── nested.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref.json │ │ │ └── with-$ref.yaml │ │ ├── OAR037 │ │ │ ├── complete.json │ │ │ ├── complete.yaml │ │ │ ├── nested.json │ │ │ ├── nested.yaml │ │ │ ├── with-$ref.json │ │ │ └── with-$ref.yaml │ │ ├── OAR042 │ │ │ ├── incorrect-version.json │ │ │ ├── incorrect-version.yaml │ │ │ ├── too-long.json │ │ │ ├── too-long.yaml │ │ │ ├── too-short.json │ │ │ ├── too-short.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── without-api-prefix.json │ │ │ └── without-api-prefix.yaml │ │ ├── OAR044 │ │ │ ├── media-type.json │ │ │ └── media-type.yaml │ │ ├── OAR050 │ │ │ ├── provide-summary.json │ │ │ └── provide-summary.yaml │ │ ├── OAR051 │ │ │ ├── different-description.json │ │ │ └── different-description.yaml │ │ ├── OAR052 │ │ │ ├── nested.json │ │ │ ├── nested.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref.json │ │ │ └── with-$ref.yaml │ │ ├── OAR066 │ │ │ ├── snake-case-error.json │ │ │ ├── snake-case-error.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR067 │ │ │ ├── camel-case-error.json │ │ │ ├── camel-case-error.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR068 │ │ │ ├── externalref.yaml │ │ │ ├── pascal-case-error.json │ │ │ ├── pascal-case-error.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR077 │ │ │ ├── not-valid-in-query.json │ │ │ ├── not-valid-in-query.yaml │ │ │ ├── valid-in-query.json │ │ │ └── valid-in-query.yaml │ │ ├── OAR086 │ │ │ ├── external-refexample.yaml │ │ │ ├── internal-refexample.yaml │ │ │ ├── invalid-example.json │ │ │ ├── invalid-example.yaml │ │ │ ├── valid-example.json │ │ │ └── valid-example.yaml │ │ ├── OAR087 │ │ │ ├── invalid-example.json │ │ │ ├── invalid-example.yaml │ │ │ ├── valid-example.json │ │ │ └── valid-example.yaml │ │ ├── OAR088 │ │ │ ├── invalid-ref.json │ │ │ ├── invalid-ref.yaml │ │ │ ├── valid-ref.json │ │ │ └── valid-ref.yaml │ │ ├── OAR089 │ │ │ ├── invalid-ref.json │ │ │ ├── invalid-ref.yaml │ │ │ ├── valid-ref.json │ │ │ └── valid-ref.yaml │ │ ├── OAR090 │ │ │ ├── invalid-ref.json │ │ │ ├── invalid-ref.yaml │ │ │ ├── valid-ref.json │ │ │ └── valid-ref.yaml │ │ ├── OAR097 │ │ │ ├── too-short.json │ │ │ ├── too-short.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR098 │ │ │ ├── too-long.json │ │ │ ├── too-long.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR099 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── without-api-prefix.json │ │ │ └── without-api-prefix.yaml │ │ ├── OAR100 │ │ │ ├── incorrect-version.json │ │ │ ├── incorrect-version.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR101 │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR102 │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR110 │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR111 │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR113 │ │ │ ├── invalid.json │ │ │ ├── invalid.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ └── OAR115 │ │ │ ├── invalid.json │ │ │ ├── invalid.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ ├── operations │ │ ├── OAR008 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR013 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR014 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR015 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR017 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR018 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR027 │ │ │ ├── no-post.json │ │ │ ├── no-post.yaml │ │ │ ├── post-201-with-location.json │ │ │ ├── post-201-with-location.yaml │ │ │ ├── post-201-with-other-headers.json │ │ │ ├── post-201-with-other-headers.yaml │ │ │ ├── post-201-without-location.json │ │ │ ├── post-201-without-location.yaml │ │ │ ├── post-no-201.json │ │ │ └── post-no-201.yaml │ │ ├── OAR030 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-status-without-get.json │ │ │ ├── with-status-without-get.yaml │ │ │ ├── without-status.json │ │ │ └── without-status.yaml │ │ ├── OAR032 │ │ │ ├── forbidden-names.json │ │ │ ├── forbidden-names.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR038 │ │ │ ├── valid-multiple-properties.json │ │ │ ├── valid-multiple-properties.yaml │ │ │ ├── valid-one-property.json │ │ │ ├── valid-one-property.yaml │ │ │ ├── with-properties-empty.json │ │ │ ├── with-properties-empty.yaml │ │ │ ├── without-data.json │ │ │ ├── without-data.yaml │ │ │ ├── without-properties.json │ │ │ ├── without-properties.yaml │ │ │ ├── without-schema.json │ │ │ └── without-schema.yaml │ │ ├── OAR039 │ │ │ ├── missing-codes.json │ │ │ ├── missing-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR046 │ │ │ ├── declared-tag.json │ │ │ └── declared-tag.yaml │ │ ├── OAR047 │ │ │ ├── documented-tag.json │ │ │ └── documented-tag.yaml │ │ ├── OAR048 │ │ │ ├── many-body-params.json │ │ │ └── many-body-params.yaml │ │ ├── OAR061 │ │ │ ├── insuficent-response-codes.json │ │ │ ├── insuficent-response-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR062 │ │ │ ├── insuficent-response-codes.json │ │ │ ├── insuficent-response-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR063 │ │ │ ├── insuficent-response-codes.json │ │ │ ├── insuficent-response-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR064 │ │ │ ├── insuficent-response-codes.json │ │ │ ├── insuficent-response-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR065 │ │ │ ├── insuficent-response-codes.json │ │ │ ├── insuficent-response-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR071 │ │ │ ├── missing-query-params.json │ │ │ ├── missing-query-params.yaml │ │ │ ├── valid-query-params.json │ │ │ └── valid-query-params.yaml │ │ ├── OAR091 │ │ │ ├── no-ref.json │ │ │ ├── no-ref.yaml │ │ │ ├── with-ref.json │ │ │ └── with-ref.yaml │ │ ├── OAR092 │ │ │ ├── no-ref.json │ │ │ ├── no-ref.yaml │ │ │ ├── with-ref.json │ │ │ └── with-ref.yaml │ │ ├── OAR093 │ │ │ ├── no-ref.json │ │ │ ├── no-ref.yaml │ │ │ ├── with-ref.json │ │ │ └── with-ref.yaml │ │ ├── OAR103 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR104 │ │ │ └── plain.yaml │ │ ├── OAR105 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR106 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR107 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ └── OAR109 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ ├── owasp │ │ ├── OAR070 │ │ │ ├── no-numeric.json │ │ │ ├── no-numeric.yaml │ │ │ ├── numeric.json │ │ │ └── numeric.yaml │ │ └── OAR073 │ │ │ ├── no-rate-limit.json │ │ │ ├── no-rate-limit.yaml │ │ │ ├── rate-limit.json │ │ │ └── rate-limit.yaml │ ├── parameters │ │ ├── OAR019 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── with-ref.json │ │ │ ├── with-ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR020 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── excluded2.json │ │ │ ├── excluded2.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain-without2.json │ │ │ ├── plain-without2.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── plain2.json │ │ │ ├── plain2.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── with-ref.json │ │ │ ├── with-ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR021 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── with-ref.json │ │ │ ├── with-ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR022 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR023 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR024 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR025 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR026 │ │ │ ├── plain-with-$total-with-defval-false.json │ │ │ ├── plain-with-$total-with-defval-false.yaml │ │ │ ├── plain-with-$total-with-defval-true.json │ │ │ ├── plain-with-$total-with-defval-true.yaml │ │ │ ├── plain-with-$total-without-defval.json │ │ │ ├── plain-with-$total-without-defval.yaml │ │ │ ├── plain-without-$total.json │ │ │ ├── plain-without-$total.yaml │ │ │ ├── with-$ref-with-$total-with-defval-false.json │ │ │ ├── with-$ref-with-$total-with-defval-false.yaml │ │ │ ├── with-$ref-with-$total-with-defval-true.json │ │ │ ├── with-$ref-with-$total-with-defval-true.yaml │ │ │ ├── with-$ref-with-$total-without-defval.json │ │ │ ├── with-$ref-with-$total-without-defval.yaml │ │ │ ├── with-$ref-without-$total.json │ │ │ ├── with-$ref-without-$total.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR028 │ │ │ ├── excluded.json │ │ │ ├── excluded.yaml │ │ │ ├── plain-without.json │ │ │ ├── plain-without.yaml │ │ │ ├── plain.json │ │ │ ├── plain.yaml │ │ │ ├── with-$ref-without.json │ │ │ ├── with-$ref-without.yaml │ │ │ ├── with-$ref.json │ │ │ ├── with-$ref.yaml │ │ │ ├── without-parameters.json │ │ │ └── without-parameters.yaml │ │ ├── OAR060 │ │ │ ├── required-false.json │ │ │ ├── required-false.yaml │ │ │ ├── required-true.json │ │ │ └── required-true.yaml │ │ └── OAR069 │ │ │ ├── bad-request400.json │ │ │ ├── bad-request400.yaml │ │ │ ├── no-bad-request400.json │ │ │ └── no-bad-request400.yaml │ ├── regex │ │ └── OAR112 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ ├── resources │ │ ├── OAR008 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR013 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR014 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR015 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR017 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR018 │ │ │ ├── plain.json │ │ │ └── plain.yaml │ │ ├── OAR027 │ │ │ ├── no-post.json │ │ │ ├── no-post.yaml │ │ │ ├── post-201-with-location.json │ │ │ ├── post-201-with-location.yaml │ │ │ ├── post-201-with-other-headers.json │ │ │ ├── post-201-with-other-headers.yaml │ │ │ ├── post-201-without-location.json │ │ │ ├── post-201-without-location.yaml │ │ │ ├── post-no-201.json │ │ │ └── post-no-201.yaml │ │ ├── OAR029 │ │ │ ├── valid-all-of-md.json │ │ │ ├── valid-all-of-md.yaml │ │ │ ├── valid-all-of.json │ │ │ ├── valid-all-of.yaml │ │ │ ├── valid-md.json │ │ │ ├── valid-md.yaml │ │ │ ├── valid-r.json │ │ │ ├── valid-r.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-error-with-properties-wrong-type-r.json │ │ │ ├── with-error-with-properties-wrong-type-r.yaml │ │ │ ├── with-error-without-properties-r.json │ │ │ ├── with-error-without-properties-r.yaml │ │ │ ├── with-error-wrong-type-r.json │ │ │ ├── with-error-wrong-type-r.yaml │ │ │ ├── with-result-with-properties-wrong-type-md.json │ │ │ ├── with-result-with-properties-wrong-type-md.yaml │ │ │ ├── with-result-without-properties-md.json │ │ │ ├── with-result-without-properties-md.yaml │ │ │ ├── with-result-wrong-type-md.json │ │ │ ├── with-result-wrong-type-md.yaml │ │ │ ├── with-status-with-properties-wrong-type.json │ │ │ ├── with-status-with-properties-wrong-type.yaml │ │ │ ├── with-status-without-properties.json │ │ │ ├── with-status-without-properties.yaml │ │ │ ├── with-status-wrong-type.json │ │ │ ├── with-status-wrong-type.yaml │ │ │ ├── without-data-md.json │ │ │ ├── without-data-md.yaml │ │ │ ├── without-data.json │ │ │ ├── without-data.yaml │ │ │ ├── without-error-r.json │ │ │ ├── without-error-r.yaml │ │ │ ├── without-payload-r.json │ │ │ ├── without-payload-r.yaml │ │ │ ├── without-required-fields-md.json │ │ │ ├── without-required-fields-md.yaml │ │ │ ├── without-required-fields-r.json │ │ │ ├── without-required-fields-r.yaml │ │ │ ├── without-required-fields.json │ │ │ ├── without-required-fields.yaml │ │ │ ├── without-result-md.json │ │ │ ├── without-result-md.yaml │ │ │ ├── without-status.json │ │ │ └── without-status.yaml │ │ ├── OAR030 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-status-without-get.json │ │ │ ├── with-status-without-get.yaml │ │ │ ├── without-status.json │ │ │ └── without-status.yaml │ │ ├── OAR031 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── without-examples.json │ │ │ └── without-examples.yaml │ │ ├── OAR032 │ │ │ ├── forbidden-names.json │ │ │ ├── forbidden-names.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ │ ├── OAR034 │ │ │ ├── valid-all-of.json │ │ │ ├── valid-all-of.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-links-without-properties.json │ │ │ ├── with-links-without-properties.yaml │ │ │ ├── with-paging-with-properties-wrong-types.json │ │ │ ├── with-paging-with-properties-wrong-types.yaml │ │ │ ├── with-paging-without-properties.json │ │ │ ├── with-paging-without-properties.yaml │ │ │ ├── with-paging-wrong-type.json │ │ │ ├── with-paging-wrong-type.yaml │ │ │ ├── without-links-required-fields.json │ │ │ ├── without-links-required-fields.yaml │ │ │ ├── without-pagination-required-fields.json │ │ │ ├── without-pagination-required-fields.yaml │ │ │ ├── without-paging.json │ │ │ └── without-paging.yaml │ │ ├── OAR035 │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── without-authorization-responses.json │ │ │ └── without-authorization-responses.yaml │ │ ├── OAR038 │ │ │ ├── valid-multiple-properties.json │ │ │ ├── valid-multiple-properties.yaml │ │ │ ├── valid-one-property.json │ │ │ ├── valid-one-property.yaml │ │ │ ├── with-properties-empty.json │ │ │ ├── with-properties-empty.yaml │ │ │ ├── without-data.json │ │ │ ├── without-data.yaml │ │ │ ├── without-properties.json │ │ │ ├── without-properties.yaml │ │ │ ├── without-schema.json │ │ │ └── without-schema.yaml │ │ └── OAR039 │ │ │ ├── missing-codes.json │ │ │ ├── missing-codes.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ ├── schemas │ │ ├── OAR029 │ │ │ ├── externalRef.json │ │ │ ├── externalRef.yaml │ │ │ ├── externalRefNoLinks.json │ │ │ ├── externalRefNolinks.yaml │ │ │ ├── internalRef.json │ │ │ ├── internalRef.yaml │ │ │ ├── valid-all-of-md.json │ │ │ ├── valid-all-of-md.yaml │ │ │ ├── valid-all-of.json │ │ │ ├── valid-all-of.yaml │ │ │ ├── valid-md.json │ │ │ ├── valid-md.yaml │ │ │ ├── valid-r.json │ │ │ ├── valid-r.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-error-with-properties-wrong-type-r.json │ │ │ ├── with-error-with-properties-wrong-type-r.yaml │ │ │ ├── with-error-without-properties-r.json │ │ │ ├── with-error-without-properties-r.yaml │ │ │ ├── with-error-wrong-type-r.json │ │ │ ├── with-error-wrong-type-r.yaml │ │ │ ├── with-result-with-properties-wrong-type-md.json │ │ │ ├── with-result-with-properties-wrong-type-md.yaml │ │ │ ├── with-result-without-properties-md.json │ │ │ ├── with-result-without-properties-md.yaml │ │ │ ├── with-result-wrong-type-md.json │ │ │ ├── with-result-wrong-type-md.yaml │ │ │ ├── with-status-with-properties-wrong-type.json │ │ │ ├── with-status-with-properties-wrong-type.yaml │ │ │ ├── with-status-without-properties.json │ │ │ ├── with-status-without-properties.yaml │ │ │ ├── with-status-wrong-type.json │ │ │ ├── with-status-wrong-type.yaml │ │ │ ├── without-data-md.json │ │ │ ├── without-data-md.yaml │ │ │ ├── without-data.json │ │ │ ├── without-data.yaml │ │ │ ├── without-error-r.json │ │ │ ├── without-error-r.yaml │ │ │ ├── without-payload-r.json │ │ │ ├── without-payload-r.yaml │ │ │ ├── without-required-fields-md.json │ │ │ ├── without-required-fields-md.yaml │ │ │ ├── without-required-fields-r.json │ │ │ ├── without-required-fields-r.yaml │ │ │ ├── without-required-fields.json │ │ │ ├── without-required-fields.yaml │ │ │ ├── without-result-md.json │ │ │ ├── without-result-md.yaml │ │ │ ├── without-status.json │ │ │ └── without-status.yaml │ │ ├── OAR034 │ │ │ ├── valid-all-of.json │ │ │ ├── valid-all-of.yaml │ │ │ ├── valid.json │ │ │ ├── valid.yaml │ │ │ ├── with-links-without-properties.json │ │ │ ├── with-links-without-properties.yaml │ │ │ ├── with-paging-with-properties-wrong-types.json │ │ │ ├── with-paging-with-properties-wrong-types.yaml │ │ │ ├── with-paging-without-properties.json │ │ │ ├── with-paging-without-properties.yaml │ │ │ ├── with-paging-wrong-type.json │ │ │ ├── with-paging-wrong-type.yaml │ │ │ ├── without-links-required-fields.json │ │ │ ├── without-links-required-fields.yaml │ │ │ ├── without-pagination-required-fields.json │ │ │ ├── without-pagination-required-fields.yaml │ │ │ ├── without-paging.json │ │ │ └── without-paging.yaml │ │ ├── OAR080 │ │ │ ├── .gitkeep │ │ │ ├── with-security.json │ │ │ ├── with-security.yaml │ │ │ ├── without-security.json │ │ │ └── without-security.yaml │ │ └── OAR108 │ │ │ ├── invalid.json │ │ │ ├── invalid.yaml │ │ │ ├── valid.json │ │ │ └── valid.yaml │ └── security │ │ ├── OAR001 │ │ ├── with-servers.json │ │ ├── with-servers.yaml │ │ ├── without-servers.json │ │ └── without-servers.yaml │ │ ├── OAR033 │ │ ├── valid.json │ │ ├── valid.yaml │ │ ├── with-forbidden-params.json │ │ ├── with-forbidden-params.yaml │ │ ├── without-required-params.json │ │ └── without-required-params.yaml │ │ ├── OAR035 │ │ ├── valid.json │ │ ├── valid.yaml │ │ ├── without-authorization-responses.json │ │ └── without-authorization-responses.yaml │ │ ├── OAR036 │ │ ├── valid.json │ │ ├── valid.yaml │ │ ├── with-cookie.json │ │ └── with-cookie.yaml │ │ ├── OAR049 │ │ ├── no-content-in-204.json │ │ └── no-content-in-204.yaml │ │ ├── OAR053 │ │ ├── valid.json │ │ └── valid.yaml │ │ ├── OAR054 │ │ ├── valid.json │ │ └── valid.yaml │ │ ├── OAR072 │ │ ├── no-stack-trace.json │ │ ├── no-stack-trace.yaml │ │ ├── with-stack-trace.json │ │ └── with-stack-trace.yaml │ │ ├── OAR074 │ │ ├── no-restrictions.json │ │ ├── no-restrictions.yaml │ │ ├── with-restrictions.json │ │ └── with-restrictions.yaml │ │ ├── OAR075 │ │ ├── no-restrictions.json │ │ ├── no-restrictions.yaml │ │ ├── with-restrictions.json │ │ └── with-restrictions.yaml │ │ ├── OAR076 │ │ ├── nested.json │ │ ├── nested.yaml │ │ ├── plain.json │ │ ├── plain.yaml │ │ ├── with-$ref.json │ │ └── with-$ref.yaml │ │ ├── OAR078 │ │ ├── no-security.json │ │ ├── no-security.yaml │ │ ├── with-security.json │ │ └── with-security.yaml │ │ ├── OAR079 │ │ ├── bad-request404.json │ │ ├── bad-request404.yaml │ │ ├── no-bad-request404.json │ │ └── no-bad-request404.yaml │ │ ├── OAR081 │ │ ├── .gitkeep │ │ ├── not-valid-password.json │ │ ├── not-valid-password.yaml │ │ ├── valid-password.json │ │ ├── valid-password.yaml │ │ ├── valid-with-components.json │ │ └── valid-with-components.yaml │ │ ├── OAR082 │ │ ├── .gitkeep │ │ ├── valid-format.json │ │ └── valid-format.yaml │ │ ├── OAR083 │ │ ├── forbidden-query-params.json │ │ ├── forbidden-query-params.yaml │ │ ├── valid-query-params.json │ │ └── valid-query-params.yaml │ │ ├── OAR084 │ │ ├── forbidden-query-formats.json │ │ ├── forbidden-query-formats.yaml │ │ ├── valid-query-formats.json │ │ └── valid-query-formats.yaml │ │ ├── OAR085 │ │ ├── invalid-openapi-version.json │ │ ├── invalid-openapi-version.yaml │ │ ├── valid-openapi-version.json │ │ └── valid-openapi-version.yaml │ │ ├── OAR096 │ │ ├── valid.json │ │ ├── valid.yaml │ │ ├── without-authorization-responses.json │ │ └── without-authorization-responses.yaml │ │ └── OAR114 │ │ ├── valid.json │ │ ├── valid.yaml │ │ ├── with-forbidden-params.json │ │ ├── with-forbidden-params.yaml │ │ ├── without-required-params.json │ │ └── without-required-params.yaml └── v31 │ ├── parameters │ └── OAR019 │ │ ├── excluded.json │ │ ├── excluded.yaml │ │ ├── plain-without.json │ │ ├── plain-without.yaml │ │ ├── plain.json │ │ ├── plain.yaml │ │ ├── with-ref.json │ │ └── with-ref.yaml │ └── security │ └── OAR085 │ └── valid-openapi-version.yaml └── externalRef ├── OAR006.yaml ├── OAR007.yaml ├── OAR009.yaml ├── OAR010.yaml ├── OAR031.yaml ├── OAR044.yaml ├── OAR068.yaml ├── OAR086.yaml └── OAR094.yaml /.github/workflows/maven.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/.github/workflows/maven.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/.gitignore -------------------------------------------------------------------------------- /.scripts/clean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/.scripts/clean.sh -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/pom.xml -------------------------------------------------------------------------------- /src/main/java/apiaddicts/sonar/openapi/I18nContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/main/java/apiaddicts/sonar/openapi/I18nContext.java -------------------------------------------------------------------------------- /src/main/java/apiaddicts/sonar/openapi/OpenAPICustomPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/main/java/apiaddicts/sonar/openapi/OpenAPICustomPlugin.java -------------------------------------------------------------------------------- /src/main/java/apiaddicts/sonar/openapi/checks/BaseCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/main/java/apiaddicts/sonar/openapi/checks/BaseCheck.java -------------------------------------------------------------------------------- /src/main/java/apiaddicts/sonar/openapi/checks/RulesLists.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/main/java/apiaddicts/sonar/openapi/checks/RulesLists.java -------------------------------------------------------------------------------- /src/main/java/apiaddicts/sonar/openapi/checks/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/main/java/apiaddicts/sonar/openapi/checks/package-info.java -------------------------------------------------------------------------------- /src/main/java/apiaddicts/sonar/openapi/package-info.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/main/java/apiaddicts/sonar/openapi/package-info.java -------------------------------------------------------------------------------- /src/main/java/apiaddicts/sonar/openapi/utils/JsonNodeUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/main/java/apiaddicts/sonar/openapi/utils/JsonNodeUtils.java -------------------------------------------------------------------------------- /src/main/resources/messages/errors.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/main/resources/messages/errors.properties -------------------------------------------------------------------------------- /src/main/resources/messages/errors_es.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/main/resources/messages/errors_es.properties -------------------------------------------------------------------------------- /src/test/java/apiaddicts/sonar/openapi/BaseCheckTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/java/apiaddicts/sonar/openapi/BaseCheckTest.java -------------------------------------------------------------------------------- /src/test/resources/checks/v2/apim/wso2/OAR002/with-scopes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/apim/wso2/OAR002/with-scopes.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/apim/wso2/OAR002/with-scopes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/apim/wso2/OAR002/with-scopes.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/apim/wso2/OAR040/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/apim/wso2/OAR040/invalid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/apim/wso2/OAR040/invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/apim/wso2/OAR040/invalid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/apim/wso2/OAR040/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/apim/wso2/OAR040/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/apim/wso2/OAR040/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/apim/wso2/OAR040/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR044/media-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR044/media-type.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR044/media-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR044/media-type.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR045/defined-response.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR045/defined-response.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR045/defined-response.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR045/defined-response.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR046/declared-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR046/declared-tag.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR046/declared-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR046/declared-tag.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR047/documented-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR047/documented-tag.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR047/documented-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR047/documented-tag.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR048/many-body-params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR048/many-body-params.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR048/many-body-params.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR048/many-body-params.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR049/no-content-in-204.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR049/no-content-in-204.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR049/no-content-in-204.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR049/no-content-in-204.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR050/provide-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR050/provide-summary.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/core/OAR050/provide-summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/core/OAR050/provide-summary.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/examples/OAR031/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/examples/OAR031/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/examples/OAR031/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/examples/OAR031/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/examples/OAR094/valid-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/examples/OAR094/valid-example.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/examples/OAR094/valid-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/examples/OAR094/valid-example.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR006/with-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR006/with-default.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR006/with-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR006/with-default.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR006/with-specific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR006/with-specific.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR006/with-specific.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR006/with-specific.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR006/without-anything.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR006/without-anything.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR006/without-anything.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR006/without-anything.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR007/with-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR007/with-default.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR007/with-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR007/with-default.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR007/with-specific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR007/with-specific.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR007/with-specific.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR007/with-specific.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR007/without-anything.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR007/without-anything.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR007/without-anything.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR007/without-anything.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR009/with-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR009/with-default.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR009/with-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR009/with-default.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR009/with-specific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR009/with-specific.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR009/with-specific.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR009/with-specific.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR009/without-anything.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR009/without-anything.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR009/without-anything.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR009/without-anything.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR010/with-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR010/with-default.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR010/with-default.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR010/with-default.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR010/with-specific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR010/with-specific.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR010/with-specific.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR010/with-specific.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR010/without-anything.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR010/without-anything.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR010/without-anything.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR010/without-anything.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR011/base-path-ok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR011/base-path-ok.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR011/base-path-ok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR011/base-path-ok.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR011/base-path-wrong.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR011/base-path-wrong.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR011/base-path-wrong.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR011/base-path-wrong.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR011/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR011/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR011/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR011/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR012/camel-case-plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR012/camel-case-plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR012/camel-case-plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR012/camel-case-plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR012/kebab-case-plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR012/kebab-case-plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR012/kebab-case-plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR012/kebab-case-plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR012/snake-case-plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR012/snake-case-plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR012/snake-case-plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR012/snake-case-plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR016/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR016/nested.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR016/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR016/nested.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR016/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR016/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR016/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR016/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR016/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR016/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR016/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR016/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR037/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR037/nested.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR037/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR037/nested.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR037/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR037/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR037/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR037/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR037/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR037/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR037/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR037/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR042/too-long.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR042/too-long.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR042/too-long.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR042/too-long.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR042/too-short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR042/too-short.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR042/too-short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR042/too-short.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR042/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR042/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR042/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR042/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR044/media-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR044/media-type.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR044/media-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR044/media-type.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR050/provide-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR050/provide-summary.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR050/provide-summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR050/provide-summary.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR052/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR052/nested.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR052/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR052/nested.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR052/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR052/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR052/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR052/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR052/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR052/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR052/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR052/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR066/snake-case-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR066/snake-case-error.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR066/snake-case-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR066/snake-case-error.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR066/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR066/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR066/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR066/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR067/camel-case-error.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR067/camel-case-error.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR067/camel-case-error.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR067/camel-case-error.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR067/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR067/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR067/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR067/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR068/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR068/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR068/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR068/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR077/valid-in-query.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR077/valid-in-query.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR077/valid-in-query.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR077/valid-in-query.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR086/invalid-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR086/invalid-example.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR086/invalid-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR086/invalid-example.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR086/valid-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR086/valid-example.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR086/valid-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR086/valid-example.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR087/invalid-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR087/invalid-example.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR087/invalid-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR087/invalid-example.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR087/valid-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR087/valid-example.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR087/valid-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR087/valid-example.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR088/invalid-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR088/invalid-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR088/invalid-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR088/invalid-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR088/valid-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR088/valid-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR088/valid-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR088/valid-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR090/invalid-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR090/invalid-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR090/invalid-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR090/invalid-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR090/valid-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR090/valid-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR090/valid-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR090/valid-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR097/too-short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR097/too-short.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR097/too-short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR097/too-short.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR097/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR097/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR097/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR097/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR098/too-long.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR098/too-long.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR098/too-long.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR098/too-long.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR098/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR098/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR098/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR098/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR099/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR099/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR099/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR099/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR100/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR100/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR100/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR100/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR101/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR101/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR101/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR101/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR102/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR102/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR102/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR102/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR110/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR110/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR110/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR110/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR111/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR111/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR111/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR111/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR113/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR113/invalid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR113/invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR113/invalid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR113/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR113/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR113/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR113/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR115/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR115/invalid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR115/invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR115/invalid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR115/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR115/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/format/OAR115/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/format/OAR115/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR008/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR008/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR008/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR008/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR013/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR013/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR013/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR013/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR014/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR014/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR014/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR014/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR015/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR015/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR015/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR015/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR017/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR017/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR017/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR017/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR018/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR018/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR018/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR018/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR027/no-post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR027/no-post.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR027/no-post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR027/no-post.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR027/post-no-201.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR027/post-no-201.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR027/post-no-201.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR027/post-no-201.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR030/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR030/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR030/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR030/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR032/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR032/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR032/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR032/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR038/without-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR038/without-data.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR038/without-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR038/without-data.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR039/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR039/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR039/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR039/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR046/declared-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR046/declared-tag.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR046/declared-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR046/declared-tag.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR061/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR061/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR061/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR061/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR062/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR062/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR062/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR062/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR063/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR063/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR063/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR063/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR064/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR064/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR064/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR064/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR065/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR065/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR065/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR065/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR091/no-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR091/no-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR091/no-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR091/no-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR091/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR091/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR091/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR091/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR093/no-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR093/no-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR093/no-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR093/no-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR093/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR093/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR093/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR093/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR103/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR103/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR103/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR103/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR104/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR104/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR104/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR104/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR105/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR105/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR105/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR105/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR106/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR106/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR106/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR106/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR107/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR107/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR107/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR107/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR109/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR109/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/operations/OAR109/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/operations/OAR109/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/owasp/OAR070/no-numeric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/owasp/OAR070/no-numeric.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/owasp/OAR070/no-numeric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/owasp/OAR070/no-numeric.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/owasp/OAR070/numeric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/owasp/OAR070/numeric.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/owasp/OAR070/numeric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/owasp/OAR070/numeric.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/owasp/OAR073/no-rate-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/owasp/OAR073/no-rate-limit.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/owasp/OAR073/no-rate-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/owasp/OAR073/no-rate-limit.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/owasp/OAR073/rate-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/owasp/OAR073/rate-limit.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/owasp/OAR073/rate-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/owasp/OAR073/rate-limit.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR019/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR019/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR019/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR019/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR019/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR019/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR019/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR019/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR019/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR019/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR019/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR019/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR019/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR019/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR019/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR019/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/excluded2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/excluded2.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/excluded2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/excluded2.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/plain2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/plain2.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/plain2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/plain2.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR020/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR020/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR021/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR021/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR021/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR021/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR021/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR021/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR021/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR021/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR021/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR021/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR021/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR021/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR021/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR021/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR021/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR021/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR022/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR022/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR022/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR022/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR022/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR022/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR022/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR022/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR022/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR022/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR022/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR022/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR022/with-ref.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR022/with-ref.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR023/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR023/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR023/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR023/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR023/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR023/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR023/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR023/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR023/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR023/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR023/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR023/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR023/with-ref.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR023/with-ref.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR024/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR024/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR024/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR024/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR024/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR024/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR024/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR024/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR024/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR024/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR024/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR024/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR024/with-ref.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR024/with-ref.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR025/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR025/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR025/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR025/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR025/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR025/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR025/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR025/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR025/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR025/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR025/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR025/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR025/with-ref.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR025/with-ref.yaml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR028/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR028/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR028/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR028/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR028/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR028/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR028/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR028/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR028/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR028/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/parameters/OAR028/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/parameters/OAR028/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/regex/OAR112/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/regex/OAR112/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/regex/OAR112/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/regex/OAR112/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR008/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR008/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR008/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR008/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR013/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR013/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR013/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR013/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR014/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR014/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR014/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR014/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR015/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR015/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR015/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR015/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR017/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR017/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR017/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR017/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR018/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR018/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR018/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR018/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR027/no-post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR027/no-post.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR027/no-post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR027/no-post.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR027/post-no-201.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR027/post-no-201.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR027/post-no-201.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR027/post-no-201.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR029/valid-all-of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR029/valid-all-of.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR029/valid-all-of.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR029/valid-all-of.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR029/valid-md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR029/valid-md.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR029/valid-md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR029/valid-md.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR029/valid-r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR029/valid-r.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR029/valid-r.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR029/valid-r.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR029/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR029/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR029/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR029/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR029/without-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR029/without-data.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR029/without-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR029/without-data.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR030/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR030/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR030/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR030/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR031/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR031/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR031/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR031/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR032/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR032/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR032/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR032/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR034/valid-all-of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR034/valid-all-of.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR034/valid-all-of.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR034/valid-all-of.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR034/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR034/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR034/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR034/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR035/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR035/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR035/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR035/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR038/without-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR038/without-data.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR038/without-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR038/without-data.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR039/missing-codes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR039/missing-codes.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR039/missing-codes.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR039/missing-codes.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR039/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR039/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/resources/OAR039/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/resources/OAR039/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/valid-all-of-md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/valid-all-of-md.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/valid-all-of-md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/valid-all-of-md.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/valid-all-of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/valid-all-of.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/valid-all-of.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/valid-all-of.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/valid-md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/valid-md.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/valid-md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/valid-md.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/valid-r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/valid-r.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/valid-r.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/valid-r.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/without-data-md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/without-data-md.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/without-data-md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/without-data-md.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/without-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/without-data.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/without-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/without-data.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/without-error-r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/without-error-r.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/without-error-r.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/without-error-r.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/without-status.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/without-status.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR029/without-status.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR029/without-status.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR034/valid-all-of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR034/valid-all-of.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR034/valid-all-of.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR034/valid-all-of.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR034/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR034/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR034/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR034/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR034/without-paging.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR034/without-paging.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR034/without-paging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR034/without-paging.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR080/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR080/with-security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR080/with-security.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR080/with-security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR080/with-security.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR108/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR108/invalid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR108/invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR108/invalid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR108/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR108/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/schemas/OAR108/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/schemas/OAR108/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR033/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR033/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR033/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR033/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR035/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR035/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR035/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR035/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR036/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR036/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR036/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR036/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR036/with-cookie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR036/with-cookie.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR036/with-cookie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR036/with-cookie.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR053/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR053/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR053/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR053/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR054/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR054/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR054/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR054/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR076/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR076/nested.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR076/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR076/nested.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR076/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR076/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR076/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR076/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR076/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR076/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR076/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR076/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR078/no-security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR078/no-security.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR078/no-security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR078/no-security.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR081/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR082/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR096/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR096/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR096/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR096/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR114/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR114/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v2/security/OAR114/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v2/security/OAR114/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/apim/wso2/OAR040/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/apim/wso2/OAR040/invalid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/apim/wso2/OAR040/invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/apim/wso2/OAR040/invalid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/apim/wso2/OAR040/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/apim/wso2/OAR040/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/apim/wso2/OAR040/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/apim/wso2/OAR040/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/core/OAR044/media-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/core/OAR044/media-type.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/core/OAR044/media-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/core/OAR044/media-type.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/core/OAR046/declared-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/core/OAR046/declared-tag.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/core/OAR046/declared-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/core/OAR046/declared-tag.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/core/OAR047/documented-tag.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/core/OAR047/documented-tag.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/core/OAR047/documented-tag.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/core/OAR047/documented-tag.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/core/OAR050/provide-summary.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/core/OAR050/provide-summary.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/core/OAR050/provide-summary.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/core/OAR050/provide-summary.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/examples/OAR031/externalref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/examples/OAR031/externalref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/examples/OAR031/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/examples/OAR031/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/examples/OAR031/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/examples/OAR031/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/examples/OAR094/externalref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/examples/OAR094/externalref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR009/with-specific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR009/with-specific.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR009/with-specific.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR009/with-specific.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR010/with-specific.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR010/with-specific.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR010/with-specific.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR010/with-specific.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR011/base-path-ok.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR011/base-path-ok.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR011/base-path-ok.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR011/base-path-ok.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR011/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR011/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR011/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR011/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR016/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR016/nested.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR016/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR016/nested.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR016/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR016/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR016/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR016/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR016/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR016/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR016/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR016/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR037/complete.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR037/complete.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR037/complete.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR037/complete.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR037/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR037/nested.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR037/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR037/nested.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR037/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR037/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR037/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR037/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR042/too-long.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR042/too-long.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR042/too-long.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR042/too-long.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR042/too-short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR042/too-short.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR042/too-short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR042/too-short.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR042/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR042/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR042/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR042/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR044/media-type.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR044/media-type.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR044/media-type.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR044/media-type.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR052/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR052/nested.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR052/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR052/nested.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR052/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR052/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR052/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR052/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR052/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR052/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR052/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR052/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR066/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR066/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR066/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR066/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR067/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR067/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR067/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR067/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR068/externalref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR068/externalref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR068/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR068/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR068/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR068/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR086/valid-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR086/valid-example.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR086/valid-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR086/valid-example.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR087/valid-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR087/valid-example.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR087/valid-example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR087/valid-example.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR088/invalid-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR088/invalid-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR088/invalid-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR088/invalid-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR088/valid-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR088/valid-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR088/valid-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR088/valid-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR089/invalid-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR089/invalid-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR089/invalid-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR089/invalid-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR089/valid-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR089/valid-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR089/valid-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR089/valid-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR090/invalid-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR090/invalid-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR090/invalid-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR090/invalid-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR090/valid-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR090/valid-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR090/valid-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR090/valid-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR097/too-short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR097/too-short.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR097/too-short.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR097/too-short.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR097/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR097/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR097/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR097/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR098/too-long.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR098/too-long.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR098/too-long.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR098/too-long.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR098/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR098/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR098/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR098/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR099/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR099/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR099/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR099/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR100/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR100/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR100/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR100/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR101/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR101/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR101/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR101/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR102/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR102/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR102/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR102/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR110/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR110/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR110/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR110/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR111/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR111/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR111/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR111/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR113/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR113/invalid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR113/invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR113/invalid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR113/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR113/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR113/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR113/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR115/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR115/invalid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR115/invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR115/invalid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR115/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR115/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/format/OAR115/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/format/OAR115/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR008/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR008/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR008/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR008/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR013/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR013/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR013/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR013/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR014/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR014/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR014/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR014/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR015/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR015/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR015/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR015/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR017/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR017/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR017/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR017/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR018/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR018/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR018/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR018/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR027/no-post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR027/no-post.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR027/no-post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR027/no-post.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR030/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR030/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR030/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR030/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR032/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR032/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR032/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR032/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR039/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR039/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR039/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR039/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR061/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR061/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR061/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR061/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR062/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR062/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR062/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR062/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR063/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR063/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR063/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR063/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR064/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR064/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR064/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR064/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR065/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR065/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR065/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR065/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR091/no-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR091/no-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR091/no-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR091/no-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR091/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR091/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR091/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR091/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR092/no-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR092/no-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR092/no-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR092/no-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR092/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR092/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR092/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR092/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR093/no-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR093/no-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR093/no-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR093/no-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR093/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR093/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR093/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR093/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR103/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR103/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR103/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR103/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR104/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR104/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR105/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR105/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR105/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR105/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR106/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR106/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR106/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR106/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR107/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR107/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR107/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR107/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR109/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR109/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/operations/OAR109/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/operations/OAR109/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/owasp/OAR070/no-numeric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/owasp/OAR070/no-numeric.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/owasp/OAR070/no-numeric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/owasp/OAR070/no-numeric.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/owasp/OAR070/numeric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/owasp/OAR070/numeric.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/owasp/OAR070/numeric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/owasp/OAR070/numeric.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/owasp/OAR073/no-rate-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/owasp/OAR073/no-rate-limit.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/owasp/OAR073/no-rate-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/owasp/OAR073/no-rate-limit.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/owasp/OAR073/rate-limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/owasp/OAR073/rate-limit.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/owasp/OAR073/rate-limit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/owasp/OAR073/rate-limit.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR019/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR019/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR019/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR019/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR019/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR019/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR019/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR019/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR019/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR019/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR019/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR019/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR019/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR019/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR019/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR019/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/excluded2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/excluded2.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/excluded2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/excluded2.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/plain2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/plain2.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/plain2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/plain2.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR020/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR020/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR021/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR021/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR021/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR021/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR021/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR021/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR021/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR021/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR021/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR021/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR021/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR021/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR021/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR021/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR021/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR021/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR022/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR022/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR022/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR022/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR022/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR022/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR022/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR022/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR022/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR022/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR022/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR022/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR023/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR023/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR023/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR023/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR023/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR023/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR023/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR023/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR023/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR023/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR023/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR023/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR024/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR024/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR024/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR024/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR024/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR024/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR024/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR024/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR024/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR024/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR024/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR024/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR025/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR025/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR025/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR025/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR025/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR025/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR025/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR025/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR025/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR025/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR025/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR025/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR028/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR028/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR028/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR028/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR028/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR028/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR028/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR028/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR028/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR028/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/parameters/OAR028/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/parameters/OAR028/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/regex/OAR112/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/regex/OAR112/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/regex/OAR112/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/regex/OAR112/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR008/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR008/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR008/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR008/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR013/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR013/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR013/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR013/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR014/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR014/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR014/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR014/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR015/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR015/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR015/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR015/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR017/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR017/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR017/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR017/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR018/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR018/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR018/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR018/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR027/no-post.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR027/no-post.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR027/no-post.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR027/no-post.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR029/valid-md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR029/valid-md.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR029/valid-md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR029/valid-md.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR029/valid-r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR029/valid-r.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR029/valid-r.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR029/valid-r.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR029/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR029/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR029/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR029/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR030/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR030/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR030/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR030/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR031/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR031/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR031/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR031/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR032/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR032/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR032/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR032/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR034/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR034/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR034/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR034/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR035/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR035/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR035/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR035/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR039/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR039/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/resources/OAR039/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/resources/OAR039/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/externalRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/externalRef.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/externalRef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/externalRef.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/internalRef.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/internalRef.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/internalRef.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/internalRef.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/valid-all-of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/valid-all-of.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/valid-all-of.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/valid-all-of.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/valid-md.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/valid-md.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/valid-md.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/valid-md.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/valid-r.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/valid-r.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/valid-r.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/valid-r.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/without-data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/without-data.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR029/without-data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR029/without-data.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR034/valid-all-of.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR034/valid-all-of.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR034/valid-all-of.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR034/valid-all-of.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR034/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR034/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR034/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR034/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR080/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR108/invalid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR108/invalid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR108/invalid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR108/invalid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR108/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR108/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/schemas/OAR108/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/schemas/OAR108/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR033/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR033/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR033/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR033/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR035/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR035/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR035/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR035/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR036/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR036/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR036/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR036/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR036/with-cookie.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR036/with-cookie.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR036/with-cookie.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR036/with-cookie.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR053/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR053/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR053/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR053/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR054/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR054/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR054/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR054/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR076/nested.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR076/nested.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR076/nested.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR076/nested.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR076/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR076/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR076/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR076/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR076/with-$ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR076/with-$ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR076/with-$ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR076/with-$ref.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR078/no-security.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR078/no-security.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR078/no-security.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR078/no-security.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR081/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR082/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR096/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR096/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR096/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR096/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR114/valid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR114/valid.json -------------------------------------------------------------------------------- /src/test/resources/checks/v3/security/OAR114/valid.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v3/security/OAR114/valid.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v31/parameters/OAR019/excluded.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v31/parameters/OAR019/excluded.json -------------------------------------------------------------------------------- /src/test/resources/checks/v31/parameters/OAR019/excluded.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v31/parameters/OAR019/excluded.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v31/parameters/OAR019/plain.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v31/parameters/OAR019/plain.json -------------------------------------------------------------------------------- /src/test/resources/checks/v31/parameters/OAR019/plain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v31/parameters/OAR019/plain.yaml -------------------------------------------------------------------------------- /src/test/resources/checks/v31/parameters/OAR019/with-ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v31/parameters/OAR019/with-ref.json -------------------------------------------------------------------------------- /src/test/resources/checks/v31/parameters/OAR019/with-ref.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/checks/v31/parameters/OAR019/with-ref.yaml -------------------------------------------------------------------------------- /src/test/resources/externalRef/OAR006.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/externalRef/OAR006.yaml -------------------------------------------------------------------------------- /src/test/resources/externalRef/OAR007.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/externalRef/OAR007.yaml -------------------------------------------------------------------------------- /src/test/resources/externalRef/OAR009.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/externalRef/OAR009.yaml -------------------------------------------------------------------------------- /src/test/resources/externalRef/OAR010.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/externalRef/OAR010.yaml -------------------------------------------------------------------------------- /src/test/resources/externalRef/OAR031.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/externalRef/OAR031.yaml -------------------------------------------------------------------------------- /src/test/resources/externalRef/OAR044.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/externalRef/OAR044.yaml -------------------------------------------------------------------------------- /src/test/resources/externalRef/OAR068.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/externalRef/OAR068.yaml -------------------------------------------------------------------------------- /src/test/resources/externalRef/OAR086.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/externalRef/OAR086.yaml -------------------------------------------------------------------------------- /src/test/resources/externalRef/OAR094.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apiaddicts/sonaropenapi-rules/HEAD/src/test/resources/externalRef/OAR094.yaml --------------------------------------------------------------------------------