A OpenAPI 3.0.0 compliant schema.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/api-shield_openapi", "title": "api-shield_openapi", "description": "A OpenAPI 3.0.0 compliant schema.", "example": { "info": { "title": "OpenAPI JSON schema for www.example.com", "version": "1.0" }, "openapi": "3.0.0", "paths": { "... Further paths ...": {}, "/api/v1/users/{var1}": { "get": { "parameters": [ { "in": "path", "name": "var1", "required": true, "schema": { "type": "string" } } ] } } }, "servers": [ { "url": "www.example.com" } ] }, "type": "object" }