package.es.elements.JsonSchemaDialect.mjs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apidom-ns-openapi-3-1 Show documentation
Show all versions of apidom-ns-openapi-3-1 Show documentation
OpenAPI 3.1.x namespace for ApiDOM.
The newest version!
import { StringElement } from '@swagger-api/apidom-core';
class JsonSchemaDialect extends StringElement {
static default = new JsonSchemaDialect('https://spec.openapis.org/oas/3.1/dialect/base');
constructor(content, meta, attributes) {
super(content, meta, attributes);
this.element = 'jsonSchemaDialect';
}
}
export default JsonSchemaDialect;