main
Last change
on this file since 65b6638 was d24f17c, checked in by Aleksandar Panovski <apano77@…>, 15 months ago |
Initial commit
|
-
Property mode
set to
100644
|
File size:
358 bytes
|
Line | |
---|
1 | import { StringElement } from '@swagger-api/apidom-core';
|
---|
2 | class JsonSchemaDialect extends StringElement {
|
---|
3 | static default = new JsonSchemaDialect('https://spec.openapis.org/oas/3.1/dialect/base');
|
---|
4 | constructor(content, meta, attributes) {
|
---|
5 | super(content, meta, attributes);
|
---|
6 | this.element = 'jsonSchemaDialect';
|
---|
7 | }
|
---|
8 | }
|
---|
9 | export default JsonSchemaDialect; |
---|
Note:
See
TracBrowser
for help on using the repository browser.