-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ns-openapi-2): add support for Header Object (#3250)
Refs #3097
- Loading branch information
Showing
12 changed files
with
479 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,281 @@ | ||
import { | ||
StringElement, | ||
BooleanElement, | ||
Attributes, | ||
Meta, | ||
NumberElement, | ||
ArrayElement, | ||
ObjectElement, | ||
} from '@swagger-api/apidom-core'; | ||
import { UnsupportedOperationError } from '@swagger-api/apidom-error'; | ||
import { | ||
JSONReferenceElement, | ||
JSONSchemaElement, | ||
MediaElement, | ||
} from '@swagger-api/apidom-ns-json-schema-draft-4'; | ||
|
||
/* eslint-disable class-methods-use-this */ | ||
class Header extends JSONSchemaElement { | ||
constructor(content?: Record<string, unknown>, meta?: Meta, attributes?: Attributes) { | ||
super(content, meta, attributes); | ||
this.element = 'header'; | ||
this.classes.push('json-schema-draft-4'); | ||
} | ||
|
||
/** | ||
* Core vocabulary | ||
* | ||
* URI: https://tools.ietf.org/html/draft-wright-json-schema-00 | ||
*/ | ||
|
||
get idProp(): StringElement | undefined { | ||
throw new UnsupportedOperationError('idProp getter in Header class is not not supported.'); | ||
} | ||
|
||
set idProp(idProps: StringElement | undefined) { | ||
throw new UnsupportedOperationError('idProp setter in Header class is not not supported.'); | ||
} | ||
|
||
get $schema(): StringElement | undefined { | ||
throw new UnsupportedOperationError('$schema getter in Header class is not not supported.'); | ||
} | ||
|
||
set $schema($schema: StringElement | undefined) { | ||
throw new UnsupportedOperationError('$schema setter in Header class is not not supported.'); | ||
} | ||
|
||
/** | ||
* Validation keywords for arrays | ||
*/ | ||
|
||
get additionalItems(): this | JSONReferenceElement | BooleanElement | undefined { | ||
throw new UnsupportedOperationError( | ||
'additionalItems getter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
set additionalItems(additionalItems: this | JSONReferenceElement | BooleanElement | undefined) { | ||
throw new UnsupportedOperationError( | ||
'additionalItems setter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
get items(): this | undefined { | ||
return this.get('items'); | ||
} | ||
|
||
set items(items: this | undefined) { | ||
this.set('items', items); | ||
} | ||
|
||
/** | ||
* Validation keywords for objects | ||
*/ | ||
|
||
get maxProperties(): NumberElement | undefined { | ||
throw new UnsupportedOperationError( | ||
'maxProperties getter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
set maxProperties(maxProperties: NumberElement | undefined) { | ||
throw new UnsupportedOperationError( | ||
'maxProperties setter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
get minProperties(): NumberElement | undefined { | ||
throw new UnsupportedOperationError( | ||
'minProperties getter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
set minProperties(minProperties: NumberElement | undefined) { | ||
throw new UnsupportedOperationError( | ||
'minProperties setter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
get required(): ArrayElement | undefined { | ||
throw new UnsupportedOperationError('required getter in Header class is not not supported.'); | ||
} | ||
|
||
set required(required: ArrayElement | undefined) { | ||
throw new UnsupportedOperationError('required setter in Header class is not not supported.'); | ||
} | ||
|
||
get properties(): ObjectElement | undefined { | ||
throw new UnsupportedOperationError('properties getter in Header class is not not supported.'); | ||
} | ||
|
||
set properties(properties: ObjectElement | undefined) { | ||
throw new UnsupportedOperationError('properties setter in Header class is not not supported.'); | ||
} | ||
|
||
get additionalProperties(): this | JSONReferenceElement | BooleanElement | undefined { | ||
throw new UnsupportedOperationError( | ||
'additionalProperties getter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
set additionalProperties( | ||
additionalProperties: this | JSONReferenceElement | BooleanElement | undefined, | ||
) { | ||
throw new UnsupportedOperationError( | ||
'additionalProperties setter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
get patternProperties(): ObjectElement | undefined { | ||
throw new UnsupportedOperationError( | ||
'patternProperties getter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
set patternProperties(patternProperties: ObjectElement | undefined) { | ||
throw new UnsupportedOperationError( | ||
'patternProperties setter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
get dependencies(): ObjectElement | undefined { | ||
throw new UnsupportedOperationError( | ||
'dependencies getter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
set dependencies(dependencies: ObjectElement | undefined) { | ||
throw new UnsupportedOperationError( | ||
'dependencies setter in Header class is not not supported.', | ||
); | ||
} | ||
|
||
/** | ||
* Validation keywords for any instance type | ||
*/ | ||
|
||
get type(): StringElement | undefined { | ||
return this.get('type'); | ||
} | ||
|
||
set type(type: StringElement | undefined) { | ||
this.set('type', type); | ||
} | ||
|
||
get allOf(): ArrayElement | undefined { | ||
throw new UnsupportedOperationError('allOf getter in Header class is not not supported.'); | ||
} | ||
|
||
set allOf(allOf: ArrayElement | undefined) { | ||
throw new UnsupportedOperationError('allOf setter in Header class is not not supported.'); | ||
} | ||
|
||
get anyOf(): ArrayElement | undefined { | ||
throw new UnsupportedOperationError('anyOf getter in Header class is not not supported.'); | ||
} | ||
|
||
set anyOf(anyOf: ArrayElement | undefined) { | ||
throw new UnsupportedOperationError('anyOf setter in Header class is not not supported.'); | ||
} | ||
|
||
get oneOf(): ArrayElement | undefined { | ||
throw new UnsupportedOperationError('oneOf getter in Header class is not not supported.'); | ||
} | ||
|
||
set oneOf(oneOf: ArrayElement | undefined) { | ||
throw new UnsupportedOperationError('oneOf setter in Header class is not not supported.'); | ||
} | ||
|
||
get not(): this | JSONReferenceElement | undefined { | ||
throw new UnsupportedOperationError('not getter in Header class is not not supported.'); | ||
} | ||
|
||
set not(not: this | JSONReferenceElement | undefined) { | ||
throw new UnsupportedOperationError('not setter in Header class is not not supported.'); | ||
} | ||
|
||
get definitions(): ObjectElement | undefined { | ||
throw new UnsupportedOperationError('definitions getter in Header class is not not supported.'); | ||
} | ||
|
||
set definitions(definitions: ObjectElement | undefined) { | ||
throw new UnsupportedOperationError('definitions setter in Header class is not not supported.'); | ||
} | ||
|
||
/** | ||
* Metadata keywords | ||
* | ||
* URI: https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-6 | ||
*/ | ||
|
||
get title(): StringElement | undefined { | ||
throw new UnsupportedOperationError('title getter in Header class is not not supported.'); | ||
} | ||
|
||
set title(title: StringElement | undefined) { | ||
throw new UnsupportedOperationError('title setter in Header class is not not supported.'); | ||
} | ||
|
||
get description(): StringElement | undefined { | ||
return this.get('description'); | ||
} | ||
|
||
set description(description: StringElement | undefined) { | ||
this.set('description,', description); | ||
} | ||
|
||
/** | ||
* Semantic validation with "format" | ||
* | ||
* URI: https://datatracker.ietf.org/doc/html/draft-wright-json-schema-validation-00#section-7 | ||
*/ | ||
|
||
get format(): StringElement | undefined { | ||
return this.get('format'); | ||
} | ||
|
||
set format(format: StringElement | undefined) { | ||
this.set('format', format); | ||
} | ||
|
||
/** | ||
* JSON Hyper-Schema | ||
* | ||
* URI: https://datatracker.ietf.org/doc/html/draft-wright-json-schema-hyperschema-00 | ||
*/ | ||
|
||
get base(): StringElement | undefined { | ||
throw new UnsupportedOperationError('base getter in Header class is not not supported.'); | ||
} | ||
|
||
set base(base: StringElement | undefined) { | ||
throw new UnsupportedOperationError('base setter in Header class is not not supported.'); | ||
} | ||
|
||
get links(): ArrayElement | undefined { | ||
throw new UnsupportedOperationError('links getter in Header class is not not supported.'); | ||
} | ||
|
||
set links(links: ArrayElement | undefined) { | ||
throw new UnsupportedOperationError('links setter in Header class is not not supported.'); | ||
} | ||
|
||
get media(): MediaElement | undefined { | ||
throw new UnsupportedOperationError('media getter in Header class is not not supported.'); | ||
} | ||
|
||
set media(media: MediaElement | undefined) { | ||
throw new UnsupportedOperationError('media setter in Header class is not not supported.'); | ||
} | ||
|
||
get readOnly(): BooleanElement | undefined { | ||
throw new UnsupportedOperationError('readOnly getter in Header class is not not supported.'); | ||
} | ||
|
||
set readOnly(readOnly: BooleanElement | undefined) { | ||
throw new UnsupportedOperationError('readOnly setter in Header class is not not supported.'); | ||
} | ||
} | ||
/* eslint-enable class-methods-use-this */ | ||
|
||
export default Header; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.