René's URL Explorer Experiment


Title: OAS3.1 validation not triggering for `exclusiveMinimum`? · python-openapi/openapi-core · Discussion #810 · GitHub

Open Graph Title: OAS3.1 validation not triggering for `exclusiveMinimum`? · python-openapi/openapi-core · Discussion #810

X Title: OAS3.1 validation not triggering for `exclusiveMinimum`? · python-openapi/openapi-core · Discussion #810

Description: OAS3.1 validation not triggering for `exclusiveMinimum`?

Open Graph Description: Hello! I've been looking at updating pyramid_openapi3 to support OAS3.1, since openapi-core supports it, woohoo! I wasn't sure if this is a bug in openapi-core/one of the underlying libraries yet, ...

X Description: Hello! I've been looking at updating pyramid_openapi3 to support OAS3.1, since openapi-core supports it, woohoo! I wasn't sure if this is a bug in openapi-core/one of the underlying librari...

Opengraph URL: https://github.com/python-openapi/openapi-core/discussions/810

X: @github

direct link

Domain: patch-diff.githubusercontent.com


Hey, it has json ld scripts:
{"@context":"https://schema.org","@type":"QAPage","mainEntity":{"@type":"Question","name":"OAS3.1 validation not triggering for `exclusiveMinimum`?","text":"

Hello!

\n

I've been looking at updating pyramid_openapi3 to support OAS3.1, since openapi-core supports it, woohoo!

\n

I wasn't sure if this is a bug in openapi-core/one of the underlying libraries yet, so I thought it'd be best to ask here.

\n

Here's a sample.yaml file I'm using:

\n
openapi: \"3.1.0\"\ninfo:\n  version: \"1.0.0\"\n  title: Hello API\npaths:\n  /hello:\n    get:\n      parameters:\n        - name: name\n          in: query\n          required: true\n          schema:\n            type: string\n            exclusiveMinimum: 3\n      responses:\n        200:\n          description: Say hello\n        400:\n          description: Bad Request
\n

Note the exclusiveMinimum: 3 value. In OAS3.0, this would have been a pair of minimum: 3 and exclusiveMinimum: true, but in OAS3.1 I should be able to express it only with one key.

\n

Here's a repro that should error, but doesn't:

\n
import requests\nfrom openapi_core import OpenAPI\nfrom openapi_core.contrib.requests import RequestsOpenAPIRequest\n\nopenapi = OpenAPI.from_file_path('sample.yaml')\n\nrequest = requests.Request('GET', 'https://foo.local/hello?name=yo')\nopenapi_request = RequestsOpenAPIRequest(request)\n\n# Should raise a validation error for the parameter being too short, doesn't\nvalidated = openapi.unmarshal_request(openapi_request)\n\n# Some debug handling\nassert not validated.errors\nprint(validated.parameters.query[\"name\"]) #=> yo\nprint(len(validated.parameters.query[\"name\"])) #=> 2
\n

Some versions:

\n\n

Full version tree, in case that's interesting:

\n
Details\n
$ poetry show -t openapi-core\nopenapi-core 0.19.0 client-side and server-side support for the OpenAPI Specification v3\n├── isodate *\n│   └── six *\n├── jsonschema >=4.18.0,<5.0.0\n│   ├── attrs >=22.2.0\n│   ├── jsonschema-specifications >=2023.03.6\n│   │   └── referencing >=0.31.0\n│   │       ├── attrs >=22.2.0 (circular dependency aborted here)\n│   │       └── rpds-py >=0.7.0\n│   ├── referencing >=0.28.4 (circular dependency aborted here)\n│   └── rpds-py >=0.7.1 (circular dependency aborted here)\n├── jsonschema-path >=0.3.1,<0.4.0\n│   ├── pathable >=0.4.1,<0.5.0\n│   ├── pyyaml >=5.1\n│   ├── referencing >=0.28.0,<0.32.0\n│   │   ├── attrs >=22.2.0\n│   │   └── rpds-py >=0.7.0\n│   └── requests >=2.31.0,<3.0.0\n│       ├── certifi >=2017.4.17\n│       ├── charset-normalizer >=2,<4\n│       ├── idna >=2.5,<4\n│       └── urllib3 >=1.21.1,<3\n├── more-itertools *\n├── openapi-schema-validator >=0.6.0,<0.7.0\n│   ├── jsonschema >=4.19.1,<5.0.0\n│   │   ├── attrs >=22.2.0\n│   │   ├── jsonschema-specifications >=2023.03.6\n│   │   │   └── referencing >=0.31.0\n│   │   │       ├── attrs >=22.2.0 (circular dependency aborted here)\n│   │   │       └── rpds-py >=0.7.0\n│   │   ├── referencing >=0.28.4 (circular dependency aborted here)\n│   │   └── rpds-py >=0.7.1 (circular dependency aborted here)\n│   ├── jsonschema-specifications >=2023.5.2,<2024.0.0 (circular dependency aborted here)\n│   └── rfc3339-validator *\n│       └── six *\n├── openapi-spec-validator >=0.7.1,<0.8.0\n│   ├── jsonschema >=4.18.0,<5.0.0\n│   │   ├── attrs >=22.2.0\n│   │   ├── jsonschema-specifications >=2023.03.6\n│   │   │   └── referencing >=0.31.0\n│   │   │       ├── attrs >=22.2.0 (circular dependency aborted here)\n│   │   │       └── rpds-py >=0.7.0\n│   │   ├── referencing >=0.28.4 (circular dependency aborted here)\n│   │   └── rpds-py >=0.7.1 (circular dependency aborted here)\n│   ├── jsonschema-path >=0.3.1,<0.4.0\n│   │   ├── pathable >=0.4.1,<0.5.0\n│   │   ├── pyyaml >=5.1\n│   │   ├── referencing >=0.28.0,<0.32.0 (circular dependency aborted here)\n│   │   └── requests >=2.31.0,<3.0.0\n│   │       ├── certifi >=2017.4.17\n│   │       ├── charset-normalizer >=2,<4\n│   │       ├── idna >=2.5,<4\n│   │       └── urllib3 >=1.21.1,<3\n│   ├── lazy-object-proxy >=1.7.1,<2.0.0\n│   └── openapi-schema-validator >=0.6.0,<0.7.0\n│       ├── jsonschema >=4.19.1,<5.0.0 (circular dependency aborted here)\n│       ├── jsonschema-specifications >=2023.5.2,<2024.0.0 (circular dependency aborted here)\n│       └── rfc3339-validator *\n│           └── six *\n├── parse *\n└── werkzeug *\n    └── markupsafe >=2.1.1
\n
\n

I hope this makes the issue clear, please let me know if there's something I'm overlooking!

","upvoteCount":1,"answerCount":1,"acceptedAnswer":{"@type":"Answer","text":"

Hi @miketheman

\n

exclusiveMinimum works for numeric types only

\n

https://json-schema.org/understanding-json-schema/reference/numeric#range

","upvoteCount":1,"url":"https://github.com/python-openapi/openapi-core/discussions/810#discussioncomment-8813175"}}}

route-pattern/_view_fragments/Voltron::DiscussionsFragmentsController/show/:user_id/:repository/:discussion_number/discussion_layout(.:format)
route-controllervoltron_discussions_fragments
route-actiondiscussion_layout
fetch-noncev2:2f16209d-bce3-54bf-67f4-aaf17884463a
current-catalog-service-hash9f0abe34da433c9b6db74bffa2466494a717b579a96b30a5d252e5090baea7be
request-id95BC:2C62EA:59E0F0A:7A6DED4:69783FD8
html-safe-nonce99fe436b6baf7de7f901258524fce457d151be09c75cc7ed9b645d6c30fe6c3c
visitor-payloadeyJyZWZlcnJlciI6IiIsInJlcXVlc3RfaWQiOiI5NUJDOjJDNjJFQTo1OUUwRjBBOjdBNkRFRDQ6Njk3ODNGRDgiLCJ2aXNpdG9yX2lkIjoiNDIyMzI2MjQxNTAzNTg0MjUyMCIsInJlZ2lvbl9lZGdlIjoiaWFkIiwicmVnaW9uX3JlbmRlciI6ImlhZCJ9
visitor-hmace828f30f63bcbfee1d4d78e9c5521bd7e5ca0c13170919384707f4ba17da7609
hovercard-subject-tagdiscussion:6374738
github-keyboard-shortcutsrepository,copilot
google-site-verificationApib7-x98H0j5cPqHWwSMm6dNU4GmODRoqxLiDzdx9I
octolytics-urlhttps://collector.github.com/github/collect
analytics-location///voltron/discussions_fragments/discussion_layout
fb:app_id1401488693436528
apple-itunes-appapp-id=1477376905, app-argument=https://github.com/_view_fragments/Voltron::DiscussionsFragmentsController/show/python-openapi/openapi-core/810/discussion_layout
twitter:imagehttps://opengraph.githubassets.com/730ccf9a0c1925e3e78d6d387233aaeea7da62633bb2fc69e6c0e28c1476a600/python-openapi/openapi-core/discussions/810
twitter:cardsummary_large_image
og:imagehttps://opengraph.githubassets.com/730ccf9a0c1925e3e78d6d387233aaeea7da62633bb2fc69e6c0e28c1476a600/python-openapi/openapi-core/discussions/810
og:image:altHello! I've been looking at updating pyramid_openapi3 to support OAS3.1, since openapi-core supports it, woohoo! I wasn't sure if this is a bug in openapi-core/one of the underlying libraries yet, ...
og:image:width1200
og:image:height600
og:site_nameGitHub
og:typeobject
hostnamegithub.com
expected-hostnamegithub.com
None2981c597c945c1d90ac6fa355ce7929b2f413dfe7872ca5c435ee53a24a1de50
turbo-cache-controlno-preview
go-importgithub.com/python-openapi/openapi-core git https://github.com/python-openapi/openapi-core.git
octolytics-dimension-user_id126442889
octolytics-dimension-user_loginpython-openapi
octolytics-dimension-repository_id104200746
octolytics-dimension-repository_nwopython-openapi/openapi-core
octolytics-dimension-repository_publictrue
octolytics-dimension-repository_is_forkfalse
octolytics-dimension-repository_network_root_id104200746
octolytics-dimension-repository_network_root_nwopython-openapi/openapi-core
turbo-body-classeslogged-out env-production page-responsive
disable-turbofalse
browser-stats-urlhttps://api.github.com/_private/browser/stats
browser-errors-urlhttps://api.github.com/_private/browser/errors
release520b65a872113b919c1bbdb03834a50af15859fd
ui-targetfull
theme-color#1e2327
color-schemelight dark

Links:

Skip to contenthttps://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810#start-of-content
https://patch-diff.githubusercontent.com/
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-openapi%2Fopenapi-core%2Fdiscussions%2F810
GitHub CopilotWrite better code with AIhttps://github.com/features/copilot
GitHub SparkBuild and deploy intelligent appshttps://github.com/features/spark
GitHub ModelsManage and compare promptshttps://github.com/features/models
MCP RegistryNewIntegrate external toolshttps://github.com/mcp
ActionsAutomate any workflowhttps://github.com/features/actions
CodespacesInstant dev environmentshttps://github.com/features/codespaces
IssuesPlan and track workhttps://github.com/features/issues
Code ReviewManage code changeshttps://github.com/features/code-review
GitHub Advanced SecurityFind and fix vulnerabilitieshttps://github.com/security/advanced-security
Code securitySecure your code as you buildhttps://github.com/security/advanced-security/code-security
Secret protectionStop leaks before they starthttps://github.com/security/advanced-security/secret-protection
Why GitHubhttps://github.com/why-github
Documentationhttps://docs.github.com
Bloghttps://github.blog
Changeloghttps://github.blog/changelog
Marketplacehttps://github.com/marketplace
View all featureshttps://github.com/features
Enterpriseshttps://github.com/enterprise
Small and medium teamshttps://github.com/team
Startupshttps://github.com/enterprise/startups
Nonprofitshttps://github.com/solutions/industry/nonprofits
App Modernizationhttps://github.com/solutions/use-case/app-modernization
DevSecOpshttps://github.com/solutions/use-case/devsecops
DevOpshttps://github.com/solutions/use-case/devops
CI/CDhttps://github.com/solutions/use-case/ci-cd
View all use caseshttps://github.com/solutions/use-case
Healthcarehttps://github.com/solutions/industry/healthcare
Financial serviceshttps://github.com/solutions/industry/financial-services
Manufacturinghttps://github.com/solutions/industry/manufacturing
Governmenthttps://github.com/solutions/industry/government
View all industrieshttps://github.com/solutions/industry
View all solutionshttps://github.com/solutions
AIhttps://github.com/resources/articles?topic=ai
Software Developmenthttps://github.com/resources/articles?topic=software-development
DevOpshttps://github.com/resources/articles?topic=devops
Securityhttps://github.com/resources/articles?topic=security
View all topicshttps://github.com/resources/articles
Customer storieshttps://github.com/customer-stories
Events & webinarshttps://github.com/resources/events
Ebooks & reportshttps://github.com/resources/whitepapers
Business insightshttps://github.com/solutions/executive-insights
GitHub Skillshttps://skills.github.com
Documentationhttps://docs.github.com
Customer supporthttps://support.github.com
Community forumhttps://github.com/orgs/community/discussions
Trust centerhttps://github.com/trust-center
Partnershttps://github.com/partners
GitHub SponsorsFund open source developershttps://github.com/sponsors
Security Labhttps://securitylab.github.com
Maintainer Communityhttps://maintainers.github.com
Acceleratorhttps://github.com/accelerator
Archive Programhttps://archiveprogram.github.com
Topicshttps://github.com/topics
Trendinghttps://github.com/trending
Collectionshttps://github.com/collections
Enterprise platformAI-powered developer platformhttps://github.com/enterprise
GitHub Advanced SecurityEnterprise-grade security featureshttps://github.com/security/advanced-security
Copilot for BusinessEnterprise-grade AI featureshttps://github.com/features/copilot/copilot-business
Premium SupportEnterprise-grade 24/7 supporthttps://github.com/premium-support
Pricinghttps://github.com/pricing
Search syntax tipshttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
documentationhttps://docs.github.com/search-github/github-code-search/understanding-github-code-search-syntax
Sign in https://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-openapi%2Fopenapi-core%2Fdiscussions%2F810
Sign up https://patch-diff.githubusercontent.com/signup?ref_cta=Sign+up&ref_loc=header+logged+out&ref_page=%2F%3Cuser-name%3E%2F%3Crepo-name%3E%2Fvoltron%2Fdiscussions_fragments%2Fdiscussion_layout&source=header-repo&source_repo=python-openapi%2Fopenapi-core
Reloadhttps://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
Reloadhttps://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
Reloadhttps://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
python-openapi https://patch-diff.githubusercontent.com/python-openapi
openapi-corehttps://patch-diff.githubusercontent.com/python-openapi/openapi-core
Please reload this pagehttps://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
Notifications https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-openapi%2Fopenapi-core
Fork 136 https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-openapi%2Fopenapi-core
Star 356 https://patch-diff.githubusercontent.com/login?return_to=%2Fpython-openapi%2Fopenapi-core
Code https://patch-diff.githubusercontent.com/python-openapi/openapi-core
Issues 74 https://patch-diff.githubusercontent.com/python-openapi/openapi-core/issues
Pull requests 14 https://patch-diff.githubusercontent.com/python-openapi/openapi-core/pulls
Discussions https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions
Actions https://patch-diff.githubusercontent.com/python-openapi/openapi-core/actions
Projects 0 https://patch-diff.githubusercontent.com/python-openapi/openapi-core/projects
Security 0 https://patch-diff.githubusercontent.com/python-openapi/openapi-core/security
Insights https://patch-diff.githubusercontent.com/python-openapi/openapi-core/pulse
Code https://patch-diff.githubusercontent.com/python-openapi/openapi-core
Issues https://patch-diff.githubusercontent.com/python-openapi/openapi-core/issues
Pull requests https://patch-diff.githubusercontent.com/python-openapi/openapi-core/pulls
Discussions https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions
Actions https://patch-diff.githubusercontent.com/python-openapi/openapi-core/actions
Projects https://patch-diff.githubusercontent.com/python-openapi/openapi-core/projects
Security https://patch-diff.githubusercontent.com/python-openapi/openapi-core/security
Insights https://patch-diff.githubusercontent.com/python-openapi/openapi-core/pulse
Answered https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810#discussioncomment-8813175
p1c2uhttps://patch-diff.githubusercontent.com/p1c2u
miketheman https://patch-diff.githubusercontent.com/miketheman
Q&Ahttps://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/categories/q-a
OAS3.1 validation not triggering for `exclusiveMinimum`? https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810#top
miketheman https://patch-diff.githubusercontent.com/miketheman
Answered https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810#discussioncomment-8813175
p1c2uhttps://patch-diff.githubusercontent.com/p1c2u
Return to tophttps://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810#top
Please reload this pagehttps://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
miketheman https://patch-diff.githubusercontent.com/miketheman
Mar 14, 2024 https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810#discussion-6374738
Give feedback.https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
p1c2u https://patch-diff.githubusercontent.com/p1c2u
Mar 16, 2024 https://github.com/python-openapi/openapi-core/discussions/810#discussioncomment-8813175
@mikethemanhttps://github.com/miketheman
https://json-schema.org/understanding-json-schema/reference/numeric#rangehttps://json-schema.org/understanding-json-schema/reference/numeric#range
View full answer https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810#discussioncomment-8813175
Oldest https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810?sort=old
Newest https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810?sort=new
Top https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810?sort=top
Please reload this pagehttps://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
p1c2u https://patch-diff.githubusercontent.com/p1c2u
Mar 16, 2024 https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810#discussioncomment-8813175
@mikethemanhttps://github.com/miketheman
https://json-schema.org/understanding-json-schema/reference/numeric#rangehttps://json-schema.org/understanding-json-schema/reference/numeric#range
Give feedback.https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
https://patch-diff.githubusercontent.com/miketheman
Please reload this pagehttps://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
mikethemanhttps://patch-diff.githubusercontent.com/miketheman
Mar 16, 2024 https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810#discussioncomment-8813188
Give feedback.https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
mikethemanhttps://patch-diff.githubusercontent.com/miketheman
Sign up for freehttps://patch-diff.githubusercontent.com/join?source=comment-repo
Sign in to commenthttps://patch-diff.githubusercontent.com/login?return_to=https%3A%2F%2Fgithub.com%2Fpython-openapi%2Fopenapi-core%2Fdiscussions%2F810
🙏 Q&A https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/categories/q-a
https://patch-diff.githubusercontent.com/miketheman
https://patch-diff.githubusercontent.com/p1c2u
https://patch-diff.githubusercontent.com/python-openapi/openapi-core/discussions/810
https://patch-diff.githubusercontent.com/settings/replies?return_to=1
https://github.com
Termshttps://docs.github.com/site-policy/github-terms/github-terms-of-service
Privacyhttps://docs.github.com/site-policy/privacy-policies/github-privacy-statement
Securityhttps://github.com/security
Statushttps://www.githubstatus.com/
Communityhttps://github.community/
Docshttps://docs.github.com/
Contacthttps://support.github.com?tags=dotcom-footer

Viewport: width=device-width


URLs of crawlers that visited me.