{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/OASInfo", "title": "OASInfo", "type": "object", "properties": { "title": { "type": "string" }, "summary": { "type": "string" }, "description": { "type": "string" }, "version": { "type": "string" }, "license": { "type": "object", "properties": { "identifier": { "type": "string" } } } }, "required": [ "title", "summary", "description", "version", "license" ] }