The openapi-generator Reference Manual

This is the openapi-generator Reference Manual, version 0.0.2, generated automatically by Declt version 4.0 beta 2 "William Riker" on Mon Feb 26 17:28:58 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 openapi-generator

Parse OpenAPI into CLOS object for client generation

Author

Kilian M. Haemmerle

Contact

License

AGPLv3-later

Version

0.0.2

Dependencies
  • str (system).
  • cl-hash-util (system).
  • cl-semver (system).
  • pathname-utils (system).
  • json-mop (system).
  • yason (system).
  • com.inuoe.jzon (system).
  • cl-project (system).
  • listopia (system).
  • alexandria (system).
  • serapeum (system).
  • quri (system).
  • dexador (system).
  • cl-json-pointer (system).
  • moptilities (system).
  • parse-float (system).
Source

openapi-generator.asd.

Child Components

3 Files

Files are sorted by type and then listed depth-first from the systems components trees.


3.1 Lisp


3.1.1 openapi-generator/openapi-generator.asd

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).

ASDF Systems

openapi-generator.


3.1.2 openapi-generator/package.lisp

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).

Packages

openapi-generator.


3.1.3 openapi-generator/json-mop.lisp

Dependency

package.lisp (file).

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).


3.1.4 openapi-generator/globals.lisp

Dependency

json-mop.lisp (file).

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).

Public Interface
Internals

3.1.5 openapi-generator/util.lisp

Dependency

globals.lisp (file).

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).

Internals

3.1.6 openapi-generator/classes.lisp

Dependency

util.lisp (file).

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).

Public Interface
Internals

3.1.7 openapi-generator/collections.lisp

Dependency

classes.lisp (file).

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).

Public Interface

print-object (method).

Internals

3.1.8 openapi-generator/convert.lisp

Dependency

collections.lisp (file).

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).

Public Interface

convert-to-openapi-3 (function).

Internals

3.1.9 openapi-generator/parser.lisp

Dependency

convert.lisp (file).

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).

Public Interface
Internals

3.1.10 openapi-generator/function-generation.lisp

Dependency

parser.lisp (file).

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).

Internals

3.1.11 openapi-generator/openapi-generator.lisp

Dependency

function-generation.lisp (file).

Source

openapi-generator.asd.

Parent Component

openapi-generator (system).

Public Interface

make-openapi-client (function).

Internals

4 Packages

Packages are listed by definition order.


4.1 openapi-generator

Source

package.lisp.

Use List

common-lisp.

Public Interface
Internals

5 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


5.1 Public Interface


5.1.1 Special variables

Special Variable: *converter-url*

Default swagger converter url.

Package

openapi-generator.

Source

globals.lisp.

Special Variable: *dereference*

This variable influences whether the openapi document will be derefenced or not.

Package

openapi-generator.

Source

globals.lisp.


5.1.2 Ordinary functions

Function: convert-to-openapi-3 (&key url content pathname content-type server)
Package

openapi-generator.

Source

convert.lisp.

Function: make-openapi-client (system-name &key server parse headers authorization cookie alias system-directory load-system openapi api-name url source-directory collection-id content dereference verbose)

Creates Openapi client by combining a project template with generated code.
Source options are url, source-directory, collection-id, or openapi (openapi class instance). The options server, parse, headers, authorization, cookie, content are stored in the library code as dynamic parameters..

Package

openapi-generator.

Source

openapi-generator.lisp.


5.1.3 Generic functions

Generic Function: dereference (table)
Package

openapi-generator.

Methods
Method: dereference ((openapi pathname))

Reads file to string from path.

Source

parser.lisp.

Method: dereference ((openapi string))

Parses (openapi json) string in same style as in JSON-MOP

Source

parser.lisp.

Method: dereference ((table hash-table))

Dereference all references recursively.
Exit recursion & warn when circular pointer detected

Source

parser.lisp.

Generic Function: parse-openapi (name &key url source-directory collection-id content dereference)

Parse json/yaml from a file or uri into openapi class instance You should mostly submit a file-name, and either

Package

openapi-generator.

Source

parser.lisp.

Methods
Method: parse-openapi ((name string) &key url source-directory collection-id content dereference)

5.1.4 Standalone methods

Method: print-object ((object path) stream)
Source

classes.lisp.

Method: print-object ((object info) stream)
Source

classes.lisp.

Method: print-object ((object reference) stream)
Source

classes.lisp.

Method: print-object ((object operation) stream)
Source

classes.lisp.

Method: print-object ((object parameter) stream)
Source

classes.lisp.

Method: print-object ((object tag) stream)
Source

classes.lisp.

Method: print-object ((object apis-guru-api) stream)
Source

collections.lisp.

Method: print-object ((object license) stream)
Source

classes.lisp.

Method: print-object ((object request-body) stream)
Source

classes.lisp.

Method: print-object ((api openapi) stream)
Source

classes.lisp.

Method: print-object ((object server) stream)
Source

classes.lisp.

Method: print-object ((object o-auth-flow) stream)
Source

classes.lisp.

Method: print-object ((object discriminator) stream)
Source

classes.lisp.

Method: print-object ((object security-scheme) stream)
Source

classes.lisp.

Method: print-object ((object server-variable) stream)
Source

classes.lisp.

Method: print-object ((object external-documentation) stream)
Source

classes.lisp.


5.2 Internals


5.2.1 Constants

Constant: constant-data-directory
Package

openapi-generator.

Source

globals.lisp.

Constant: constant-projects-directory

Projects directory within libraries data folder

Package

openapi-generator.

Source

globals.lisp.


5.2.2 Special variables

Special Variable: apis-guru-apis
Package

openapi-generator.

Source

collections.lisp.


5.2.3 Macros

Macro: json-class (name direct-superclasses direct-slots &rest options)
Package

openapi-generator.

Source

util.lisp.


5.2.4 Ordinary functions

Function: apis-guru-url (api-name &key origin)
Package

openapi-generator.

Source

collections.lisp.

Function: convert-by-content (&key content content-type server)
Package

openapi-generator.

Source

convert.lisp.

Function: convert-by-url (url &key server)
Package

openapi-generator.

Source

convert.lisp.

Function: expand-slot (rest)
Package

openapi-generator.

Source

util.lisp.

Function: from-file (pathname)

Adapted from cl-str.
Read the file and return its content as a string.

It simply uses uiop:read-file-string. There is also uiop:read-file-lines.

Package

openapi-generator.

Source

util.lisp.

Function: gen-alist (names)

Generate association list with the symbol lispified.

Package

openapi-generator.

Source

util.lisp.

Function: get-api-guru-apis (&key refresh)
Package

openapi-generator.

Source

collections.lisp.

Function: get-apis-guru-list ()

https://api.apis.guru/v2/

Package

openapi-generator.

Source

collections.lisp.

Function: get-data-file (name &key type)

Get data file

Package

openapi-generator.

Source

util.lisp.

Function: integer-string-p (s)

Predicate for valid json number (string)

Package

openapi-generator.

Source

util.lisp.

Function: json-array-p (s)

Predicate for valid json array (string)

Package

openapi-generator.

Source

util.lisp.

Function: json-false-p (s)

Predicate for valid json false

Package

openapi-generator.

Source

util.lisp.

Function: json-null-p (s)

Predicate for valid json null

Package

openapi-generator.

Source

util.lisp.

Function: json-number-p (s)

Predicate for valid json number (string)

Package

openapi-generator.

Source

util.lisp.

Function: json-object-p (s)

Predicate for valid json array (string)

Package

openapi-generator.

Source

util.lisp.

Function: json-true-p (s)

Predicate for valid json true

Package

openapi-generator.

Source

util.lisp.

Function: one-item (name)

Intern the item in the package active during execution of this function

Package

openapi-generator.

Source

util.lisp.

Function: remove-empty-values (alist)

Remove empty values from alist (used at run time)

Package

openapi-generator.

Source

util.lisp.

Function: to-file (pathname s)

Adapted from cl-str.
Write string ‘s’ to file ‘pathname’. If the file does not exist, create it (use ‘:if-does-not-exist’), if it already exists, replace its content (‘:if-exists’).

Returns the string written to file.

Package

openapi-generator.

Source

util.lisp.

Function: uri-p (uri)

Uri predicate.

Package

openapi-generator.

Source

util.lisp.


5.2.5 Generic functions

Generic Reader: absolute-keyword-location (object)
Package

openapi-generator.

Methods
Reader Method: absolute-keyword-location ((schema schema))

The absolute, dereferenced location of the validating keyword. The value MUST be expressed as a full URI using the canonical URI of the relevant schema resource with a JSON Pointer fragment, and it MUST NOT include by-reference applicators such as "$ref" or "$dynamicRef" as non-terminal path components. It MAY end in such keywords if the error or annotation is for that keyword, such as an unresolvable reference. Note that "absolute" here is in the sense of "absolute filesystem path" (meaning the complete location) rather than the "absolute-URI" terminology from RFC 3986 (meaning with scheme but without fragment). Keyword absolute locations will have a fragment in order to identify the keyword.

https://example.com/schemas/common#/$defs/count/minimum

This information MAY be omitted only if either the dynamic scope did not pass over a reference or if the schema does not declare an absolute URI as its "$id".

Source

classes.lisp.

Target Slot

absolute-keyword-location.

Generic Reader: additional-properties (object)
Package

openapi-generator.

Methods
Reader Method: additional-properties ((schema schema))

The value of "additionalProperties" MUST be a valid JSON Schema.
The behavior of this keyword depends on the presence and annotation results of "properties" and "patternProperties" within the same schema object. Validation with "additionalProperties" applies only to the child values of instance names that do not appear in the annotation results of either "properties" or "patternProperties".
For all such properties, validation succeeds if the child instance validates against the "additionalProperties" schema.
The annotation result of this keyword is the set of instance property names validated by this keyword’s subschema. This annotation affects the behavior of "unevaluatedProperties" in the Unevaluated vocabulary.
Omitting this keyword has the same assertion behavior as an empty schema.
Implementations MAY choose to implement or optimize this keyword in another way that produces the same effect, such as by directly checking the names in "properties" and the patterns in "patternProperties" against the instance property set. Implementations that do not support annotation collection MUST do so. In defining this option, it seems there is the potential for ambiguity in the output format. The ambiguity does not affect validation results, but it does affect the resulting output format. The ambiguity allows for multiple valid output results depending on whether annotations are used or a solution that "produces the same effect" as draft-07. It is understood that annotations from failing schemas are dropped.

Source

classes.lisp.

Target Slot

additional-properties.

Generic Reader: all-of (object)
Package

openapi-generator.

Methods
Reader Method: all-of ((schema schema))

This keyword’s value MUST be a non-empty array. Each item of the array MUST be a valid JSON Schema.
An instance validates successfully against this keyword if it validates successfully against all schemas defined by this keyword’s value.

Source

classes.lisp.

Target Slot

all-of.

Generic Reader: alllow-empty-value (object)
Package

openapi-generator.

Methods
Reader Method: alllow-empty-value ((header header))

Sets the ability to pass empty-valued parameters. Default value is false. If style is used, and if behavior is n/a (cannot be serialized), the value of allowEmptyValue SHALL be ignored. Use of this property is NOT RECOMMENDED, as it is likely to be removed in a later revision.

Source

classes.lisp.

Target Slot

allow-empty-value.

Generic Reader: allow-empty-value (object)
Package

openapi-generator.

Methods
Reader Method: allow-empty-value ((parameter parameter))

Sets the ability to pass empty-valued parameters. This is valid only for query parameters and allows sending a parameter with an empty value. Default value is false. If style is used, and if behavior is n/a (cannot be serialized), the value of allowEmptyValue SHALL be ignored. Use of this property is NOT RECOMMENDED, as it is likely to be removed in a later revision.

Source

classes.lisp.

Target Slot

allow-empty-value.

Generic Reader: allow-reserved (object)
Package

openapi-generator.

Methods
Reader Method: allow-reserved ((header header))

Determines whether the parameter value SHOULD allow reserved characters, as defined by [RFC3986] :/?#[]@!$&’()*+,;= to be included without percent-encoding. This property only applies to parameters with an in value of query. The default value is false.

Source

classes.lisp.

Target Slot

allow-reserved.

Reader Method: allow-reserved ((encoding encoding))

Determines whether the parameter value SHOULD allow reserved characters, as defined by [RFC3986] :/?#[]@!$&’()*+,;= to be included without percent-encoding. The default value is false. This property SHALL be ignored if the request body media type is not application/x-www-form-urlencoded or multipart/form-data. If a value is explicitly defined, then the value of contentType (implicit or explicit) SHALL be ignored.

Source

classes.lisp.

Target Slot

allow-reserved.

Reader Method: allow-reserved ((parameter parameter))

Determines whether the parameter value SHOULD allow reserved characters, as defined by [RFC3986] :/?#[]@!$&’()*+,;= to be included without percent-encoding. This property only applies to parameters with an in value of query. The default value is false.

Source

classes.lisp.

Target Slot

allow-reserved.

Generic Reader: anchor (object)
Package

openapi-generator.

Methods
Reader Method: anchor ((schema schema))

Using JSON Pointer fragments requires knowledge of the structure of the schema. When writing schema documents with the intention to provide re-usable schemas, it may be preferable to use a plain name fragment that is not tied to any particular structural location. This allows a subschema to be relocated without requiring JSON Pointer references to be updated. The "$anchor" and "$dynamicAnchor" keywords are used to specify such fragments. They are identifier keywords that can only be used to create plain name fragments, rather than absolute URIs as seen with "$id". The base URI to which the resulting fragment is appended is the canonical URI of the schema resource containing the "$anchor" or "$dynamicAnchor" in question. As discussed in the previous section, this is either the nearest "$id" in the same or parent schema object, or the base URI for the document as determined according to RFC 3986. If present, the value of this keyword MUST be a string and MUST start with a letter ([A-Za-z]) or underscore ("_"), followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), and periods ("."). This matches the US-ASCII part of XML’s NCName production [xml-names]. Note that the anchor string does not include the "#" character, as it is not a URI-reference. An "$anchor": "foo" becomes the fragment "#foo" when used in a URI. See below for full examples. The effect of specifying the same fragment name multiple times within the same resource, using any combination of "$anchor" and/or "$dynamicAnchor", is undefined. Implementations MAY raise an error if such usage is detected.

Source

classes.lisp.

Target Slot

anchor.

Generic Reader: annotations (object)
Package

openapi-generator.

Methods
Reader Method: annotations ((schema schema))

The collection of errors or annotations produced by a successful validation

Source

classes.lisp.

Target Slot

annotations.

Generic Reader: any-of (object)
Package

openapi-generator.

Methods
Reader Method: any-of ((schema schema))

This keyword’s value MUST be a non-empty array. Each item of the array MUST be a valid JSON Schema.
An instance validates successfully against this keyword if it validates successfully against at least one schema defined by this keyword’s value. Note that when annotations are being collected, all subschemas MUST be examined so that annotations are collected from each subschema that validates successfully.

Source

classes.lisp.

Target Slot

any-of.

Generic Reader: api-list (object)
Package

openapi-generator.

Methods
Reader Method: api-list ((apis-guru-list apis-guru-list))

automatically generated reader method

Source

collections.lisp.

Target Slot

api-list.

Generic Reader: apis-guru-origin-format (object)
Package

openapi-generator.

Methods
Reader Method: apis-guru-origin-format ((apis-guru-origin apis-guru-origin))

automatically generated reader method

Source

collections.lisp.

Target Slot

format.

Generic Function: assure-optional (optional-parameter)

Generate code for run-time type checking of optional arguments. This only happens, if arguments supplied.

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: assure-optional ((optional-parameter parameter))
Method: assure-optional ((optional-parameter list))
Generic Function: assure-required (required-parameters)

Generate code for run-time type checking of required arguments

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: assure-required ((required-parameter parameter))
Method: assure-required ((required-parameters list))
Generic Reader: attribute (object)
Package

openapi-generator.

Methods
Reader Method: attribute ((xml xml))

Declares whether the property definition translates to an attribute instead of an element. Default value is false.

Source

classes.lisp.

Target Slot

attribute.

Generic Reader: authorization-code (object)
Package

openapi-generator.

Methods
Reader Method: authorization-code ((o-auth-flows o-auth-flows))

Configuration for the OAuth Authorization Code flow. Previously called accessCode in OpenAPI 2.0.

Source

classes.lisp.

Target Slot

authorization-code.

Generic Reader: authorization-url (object)
Package

openapi-generator.

Methods
Reader Method: authorization-url ((o-auth-flow o-auth-flow))

The authorization URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.

Source

classes.lisp.

Target Slot

authorization-url.

Generic Reader: bearer-format (object)
Package

openapi-generator.

Methods
Reader Method: bearer-format ((security-scheme security-scheme))

A hint to the client to identify how the bearer token is formatted. Bearer tokens are usually generated by an authorization server, so this information is primarily for documentation purposes.

Source

classes.lisp.

Target Slot

bearer-format.

Generic Reader: callbacks (object)
Package

openapi-generator.

Methods
Reader Method: callbacks ((operation operation))

A map of possible out-of band callbacks related to the parent operation. The key is a unique identifier for the Callback Object. Each value in the map is a Callback Object that describes a request that may be initiated by the API provider and the expected responses.

Source

classes.lisp.

Target Slot

callbacks.

Reader Method: callbacks ((components components))

An object to hold reusable Callback Objects.

Source

classes.lisp.

Target Slot

callbacks.

Generic Function: check-api-slots (api list)

Make sure that the function (alias) can be generated.
Prefered alias source is operation-id. Last resort option is path.

Package

openapi-generator.

Source

openapi-generator.lisp.

Methods
Method: check-api-slots ((api openapi) (list list))
Generic Reader: client-credentials (object)
Package

openapi-generator.

Methods
Reader Method: client-credentials ((o-auth-flows o-auth-flows))

Configuration for the OAuth Client Credentials flow. Previously called application in OpenAPI 2.0.

Source

classes.lisp.

Target Slot

client-credentials.

Generic Function: collect-alias-exports (api slot)

Create list of upcased string to include in export clause of defpackage.

Package

openapi-generator.

Source

openapi-generator.lisp.

Methods
Method: collect-alias-exports ((api openapi) (slot string))
Method: collect-alias-exports ((api openapi) (slot symbol))
Generic Function: collect-function-names (api &key param-case)

Generate all function names

Package

openapi-generator.

Source

openapi-generator.lisp.

Methods
Method: collect-function-names ((api openapi) &key param-case)
Generic Function: collect-parameters (path operation)

Collect all parameters belong to an api a path and operation.

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: collect-parameters ((path path) (operation symbol))
Generic Function: collect-path-types (path)

Collect all bound operation types as symbols

Package

openapi-generator.

Source

openapi-generator.lisp.

Methods
Method: collect-path-types ((path path))
Generic Reader: comment (object)
Package

openapi-generator.

Methods
Reader Method: comment ((schema schema))

Comments With "$comment"

This keyword reserves a location for comments from schema authors to readers or maintainers of the schema.
The value of this keyword MUST be a string. Implementations MUST NOT present this string to end users. Tools for editing schemas SHOULD support displaying and editing this keyword. The value of this keyword MAY be used in debug or error output which is intended for developers making use of schemas. Schema vocabularies SHOULD allow "$comment" within any object containing vocabulary keywords. Implementations MAY assume "$comment" is allowed unless the vocabulary specifically forbids it. Vocabularies MUST NOT specify any effect of "$comment" beyond what is described in this specification. Tools that translate other media types or programming languages to and from application/schema+json MAY choose to convert that media type or programming language’s native comments to or from "$comment" values. The behavior of such translation when both native comments and "$comment" properties are present is implementation-dependent. Implementations MAY strip "$comment" values at any point during processing. In particular, this allows for shortening schemas when the size of deployed schemas is a concern. Implementations MUST NOT take any other action based on the presence, absence, or contents of "$comment" properties. In particular, the value of "$comment" MUST NOT be collected as an annotation result.

Source

classes.lisp.

Target Slot

comment.

Generic Reader: components (object)
Package

openapi-generator.

Methods
Reader Method: components ((openapi openapi))

An element to hold various schemas for the document.

Source

classes.lisp.

Target Slot

components.

Generic Function: concat-strings (list)

Concatenates strings together and breaks when other element comes

Package

openapi-generator.

Source

util.lisp.

Methods
Method: concat-strings ((list list))
Generic Reader: const (object)
Package

openapi-generator.

Methods
Reader Method: const ((schema schema))

The value of this keyword MAY be of any type, including null.
Use of this keyword is functionally equivalent to an "enum" (Section 6.1.2) with a single value.
An instance validates successfully against this keyword if its value is equal to the value of the keyword.

Source

classes.lisp.

Target Slot

const.

Generic Reader: contact (object)
Package

openapi-generator.

Methods
Reader Method: contact ((info info))

The contact information for the exposed API.

Source

classes.lisp.

Target Slot

contact.

Generic Reader: contains (object)
Package

openapi-generator.

Methods
Reader Method: contains ((schema schema))

The value of this keyword MUST be a valid JSON Schema.
An array instance is valid against "contains" if at least one of its elements is valid against the given schema, except when "minContains" is present and has a value of 0, in which case an array instance MUST be considered valid against the "contains" keyword, even if none of its elements is valid against the given schema.
This keyword produces an annotation value which is an array of the indexes to which this keyword validates successfully when applying its subschema, in ascending order. The value MAY be a boolean "true" if the subschema validates successfully when applied to every index of the instance. The annotation MUST be present if the instance array to which this keyword’s schema applies is empty. This annotation affects the behavior of "unevaluatedItems" in the Unevaluated vocabulary, and MAY also be used to implement the "minContains" and "maxContains" keywords in the Validation vocabulary.
The subschema MUST be applied to every array element even after the first match has been found, in order to collect annotations for use by other keywords. This is to ensure that all possible annotations are collected.

Source

classes.lisp.

Target Slot

contains.

Generic Reader: content (object)
Package

openapi-generator.

Methods
Reader Method: content ((header header))

A map containing the representations for the parameter. The key is the media type and the value describes it. The map MUST only contain one entry.

Source

classes.lisp.

Target Slot

content.

Reader Method: content ((response response))

Maps a header name to its definition. [RFC7230] states header names are case insensitive. If a response header is defined with the name "Content-Type", it SHALL be ignored.

Source

classes.lisp.

Target Slot

content.

Reader Method: content ((request-body request-body))

The content of the request body. The key is a media type or media type range and the value describes it. For requests that match multiple keys, only the most specific key is applicable. e.g. text/plain overrides text/*

Source

classes.lisp.

Target Slot

content.

Reader Method: content ((parameter parameter))

A map containing the representations for the parameter. The key is the media type and the value describes it. The map MUST only contain one entry.

Source

classes.lisp.

Target Slot

content.

Generic Reader: content-encoding (object)
Package

openapi-generator.

Methods
Reader Method: content-encoding ((schema schema))

If the instance value is a string, this property defines that the string SHOULD be interpreted as encoded binary data and decoded using the encoding named by this property.
Possible values indicating base 16, 32, and 64 encodings with several variations are listed in RFC 4648 [RFC4648]. Additionally, sections 6.7 and 6.8 of RFC 2045 [RFC2045] provide encodings used in MIME. This keyword is derived from MIME’s Content-Transfer-Encoding header, which was designed to map binary data into ASCII characters. It is not related to HTTP’s Content-Encoding header, which is used to encode (e.g. compress or encrypt) the content of HTTP request and responses. As "base64" is defined in both RFCs, the definition from RFC 4648 SHOULD be assumed unless the string is specifically intended for use in a MIME context. Note that all of these encodings result in strings consisting only of 7-bit ASCII characters. Therefore, this keyword has no meaning for strings containing characters outside of that range. If this keyword is absent, but "contentMediaType" is present, this indicates that the encoding is the identity encoding, meaning that no transformation was needed in order to represent the content in a UTF-8 string. The value of this property MUST be a string.

Source

classes.lisp.

Target Slot

content-encoding.

Generic Reader: content-media-type (object)
Package

openapi-generator.

Methods
Reader Method: content-media-type ((schema schema))

If the instance is a string, this property indicates the media type of the contents of the string. If "contentEncoding" is present, this property describes the decoded string. The value of this property MUST be a string, which MUST be a media type, as defined by RFC 2046 [RFC2046].

Source

classes.lisp.

Target Slot

content-media-type.

Generic Reader: content-schema (object)
Package

openapi-generator.

Methods
Reader Method: content-schema ((schema schema))

If the instance is a string, and if "contentMediaType" is present, this property contains a schema which describes the structure of the string. This keyword MAY be used with any media type that can be mapped into JSON Schema’s data model. The value of this property MUST be a valid JSON schema. It SHOULD be ignored if "contentMediaType" is not present.

Source

classes.lisp.

Target Slot

content-schema.

Generic Reader: content-type (object)
Package

openapi-generator.

Methods
Reader Method: content-type ((encoding encoding))

The Content-Type for encoding a specific property. Default value depends on the property type: for object - application/json; for array – the default is defined based on the inner type; for all other cases the default is application/octet-stream. The value can be a specific media type (e.g. application/json), a wildcard media type (e.g. image/*), or a comma-separated list of the two types.

Source

classes.lisp.

Target Slot

content-type.

Generic Reader: default (object)
Package

openapi-generator.

Methods
Reader Method: default ((schema schema))

There are no restrictions placed on the value of this keyword. When multiple occurrences of this keyword are applicable to a single sub-instance, implementations SHOULD remove duplicates. This keyword can be used to supply a default JSON value associated with a particular schema. It is RECOMMENDED that a default value be valid against the associated schema.

Source

classes.lisp.

Target Slot

default.

Reader Method: default ((server-variable server-variable))

The default value to use for substitution, which SHALL be sent if an alternate value is not supplied. Note this behavior is different than the Schema Object’s treatment of default values, because in those cases parameter values are optional. If the enum is defined, the value MUST exist in the enum’s values.

Source

classes.lisp.

Target Slot

default.

Generic Reader: definitions (object)
Package

openapi-generator.

Methods
Reader Method: definitions ((schema schema))

Schema Re-Use With "$defs"

The "$defs" keyword reserves a location for schema authors to inline re-usable JSON Schemas into a more general schema. The keyword does not directly affect the validation result.
This keyword’s value MUST be an object. Each member value of this object MUST be a valid JSON Schema. As an example, here is a schema describing an array of positive integers, where the positive integer constraint is a subschema in "$defs":

{
"type": "array",
"items": { "$ref": "#/$defs/positiveInteger" },
"$defs": {
"positiveInteger": {
"type": "integer",
"exclusiveMinimum": 0
}
}
}

Source

classes.lisp.

Target Slot

definitions.

Generic Reader: dependend-required (object)
Package

openapi-generator.

Methods
Reader Method: dependend-required ((schema schema))

The value of this keyword MUST be an object. Properties in this object, if any, MUST be arrays. Elements in each array, if any, MUST be strings, and MUST be unique.
This keyword specifies properties that are required if a specific other property is present. Their requirement is dependent on the presence of the other property. Validation succeeds if, for each name that appears in both the instance and as a name within this keyword’s value, every item in the corresponding array is also the name of a property in the instance. Omitting this keyword has the same behavior as an empty object.

Source

classes.lisp.

Target Slot

dependend-required.

Generic Reader: dependent-schemas (object)
Package

openapi-generator.

Methods
Reader Method: dependent-schemas ((schema schema))

This keyword specifies subschemas that are evaluated if the instance is an object and contains a certain property.
This keyword’s value MUST be an object. Each value in the object MUST be a valid JSON Schema.
If the object key is a property in the instance, the entire instance must validate against the subschema. Its use is dependent on the presence of the property. Omitting this keyword has the same behavior as an empty object.

Source

classes.lisp.

Target Slot

dependent-schemas.

Generic Reader: deprecated (object)
Package

openapi-generator.

Methods
Reader Method: deprecated ((schema schema))

The value of this keyword MUST be a boolean.
When multiple occurrences of this keyword are applicable to a single sub-instance, applications SHOULD consider the instance location to be deprecated if any occurrence specifies a true value. If "deprecated" has a value of boolean true, it indicates that applications SHOULD refrain from usage of the declared property. It MAY mean the property is going to be removed in the future. A root schema containing "deprecated" with a value of true indicates that the entire resource being described MAY be removed in the future. The "deprecated" keyword applies to each instance location to which the schema object containing the keyword successfully applies. This can result in scenarios where every array item or object property is deprecated even though the containing array or object is not. Omitting this keyword has the same behavior as a value of false.

Source

classes.lisp.

Target Slot

deprecated.

Reader Method: deprecated ((header header))

Specifies that a parameter is deprecated and SHOULD be transitioned out of usage. Default value is false.

Source

classes.lisp.

Target Slot

deprecated.

Reader Method: deprecated ((parameter parameter))

Specifies that a parameter is deprecated and SHOULD be transitioned out of usage. Default value is false.

Source

classes.lisp.

Target Slot

deprecated.

Reader Method: deprecated ((operation operation))

Declares this operation to be deprecated. Consumers SHOULD refrain from usage of the declared operation. Default value is false.

Source

classes.lisp.

Target Slot

deprecated.

Generic Reader: description (object)
Package

openapi-generator.

Methods
Reader Method: description ((security-scheme security-scheme))

A description for security scheme. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((schema schema))

Can be used to decorate a user interface with information about the data produced by this user interface. A description will provide explanation about the purpose of the instance described by this schema.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((reference reference))

A description which by default SHOULD override that of the referenced component. CommonMark syntax MAY be used for rich text representation. If the referenced object-type does not allow a description field, then this field has no effect.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((tag tag))

A description for the tag. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((link link))

A description of the link. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((example example))

Long description for the example. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((response response))

A description of the response. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((parameter parameter))

A brief description of the parameter. This could contain examples of use. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((external-documentation external-documentation))

A description of the target documentation. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((operation operation))

A verbose explanation of the operation behavior. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((path path))

An optional, string description, intended to apply to all operations in this path. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((server-variable server-variable))

An optional description for the server variable. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((server server))

An optional string describing the host designated by the URL. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Reader Method: description ((info info))

A description of the API. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Generic Reader: discriminator (object)
Package

openapi-generator.

Methods
Reader Method: discriminator ((schema schema))

Adds support for polymorphism. The discriminator is an object name that is used to differentiate between other schemas which may satisfy the payload description. See Composition and Inheritance for more details.

Source

classes.lisp.

Target Slot

discriminator.

Generic Reader: dynamic-anchor (object)
Package

openapi-generator.

Methods
Reader Method: dynamic-anchor ((schema schema))

Separately from the usual usage of URIs, "$dynamicAnchor" indicates that the fragment is an extension point when used with the "$dynamicRef" keyword. This low-level, advanced feature makes it easier to extend recursive schemas such as the meta-schemas, without imposing any particular semantics on that extension. See the section on "$dynamicRef" (Section 8.2.3.2) for details. In most cases, the normal fragment behavior both suffices and is more intuitive. Therefore it is RECOMMENDED that "$anchor" be used to create plain name fragments unless there is a clear need for "$dynamicAnchor".

Source

classes.lisp.

Target Slot

dynamic-anchor.

Generic Reader: dynamic-ref (object)
Package

openapi-generator.

Methods
Reader Method: dynamic-ref ((schema schema))

The $dynamicRef keyword is an applicator that allows for deferring the full resolution until runtime, at which point it is resolved each time it is encountered while evaluating an instance. Together with "$dynamicAnchor", "$dynamicRef" implements a cooperative extension mechanism that is primarily useful with recursive schemas (schemas that reference themselves). Both the extension point and the runtime-determined extension target are defined with "$dynamicAnchor", and only exhibit runtime dynamic behavior when referenced with "$dynamicRef". The value of the "$dynamicRef" property MUST be a string which is a URI-Reference. Resolved against the current URI base, it produces the URI used as the starting point for runtime resolution. This initial resolution is safe to perform on schema load. If the initially resolved starting point URI includes a fragment that was created by the "$dynamicAnchor" keyword, the initial URI MUST be replaced by the URI (including the fragment) for the outermost schema resource in the dynamic scope (Section 7.1) that defines an identically named fragment with "$dynamicAnchor". Otherwise, its behavior is identical to "$ref", and no runtime resolution is needed.

Source

classes.lisp.

Target Slot

dynamic-ref.

Generic Reader: else (object)
Package

openapi-generator.

Methods
Reader Method: else ((schema schema))

This keyword’s value MUST be a valid JSON Schema.
When "if" is present, and the instance fails to validate against its subschema, then validation succeeds against this keyword if the instance successfully validates against this keyword’s subschema.
This keyword has no effect when "if" is absent, or when the instance successfully validates against its subschema. Implementations MUST NOT evaluate the instance against this keyword, for either validation or annotation collection purposes, in such cases.

Source

classes.lisp.

Target Slot

else.

Generic Reader: email (object)
Package

openapi-generator.

Methods
Reader Method: email ((contact contact))

The email address of the contact person/organization. This MUST be in the form of an email address.

Source

classes.lisp.

Target Slot

email.

Generic Reader: encoding (object)
Package

openapi-generator.

Methods
Reader Method: encoding ((media-type media-type))

A map between a property name and its encoding information. The key, being the property name, MUST exist in the schema as a property. The encoding object SHALL only apply to requestBody objects when the media type is multipart or application/x-www-form-urlencoded.

Source

classes.lisp.

Target Slot

encoding.

Generic Function: ensure-project-directory (directory)

Makes sure that the directory is existing before the template is generated.

Package

openapi-generator.

Source

openapi-generator.lisp.

Methods
Method: ensure-project-directory (directory)
Generic Reader: enum (object)
Package

openapi-generator.

Methods
Reader Method: enum ((schema schema))

The value of this keyword MUST be an array. This array SHOULD have at least one element. Elements in the array SHOULD be unique. An instance validates successfully against this keyword if its value is equal to one of the elements in this keyword’s array value. Elements in the array might be of any type, including null.

Source

classes.lisp.

Target Slot

enum.

Reader Method: enum ((server-variable server-variable))

An enumeration of string values to be used if the substitution options are from a limited set. The array MUST NOT be empty.

Source

classes.lisp.

Target Slot

enum.

Generic Reader: errors (object)
Package

openapi-generator.

Methods
Reader Method: errors ((schema schema))

The collection of errors or annotations produced by a failed validation

Source

classes.lisp.

Target Slot

errors.

Generic Reader: example (object)
Package

openapi-generator.

Methods
Reader Method: example ((header header))

Example of the parameter’s potential value. The example SHOULD match the specified schema and encoding properties if present. The example field is mutually exclusive of the examples field. Furthermore, if referencing a schema that contains an example, the example value SHALL override the example provided by the schema. To represent examples of media types that cannot naturally be represented in JSON or YAML, a string value can contain the example with escaping where necessary.

Source

classes.lisp.

Target Slot

example.

Reader Method: example ((media-type media-type))

Example of the media type. The example object SHOULD be in the correct format as specified by the media type. The example field is mutually exclusive of the examples field. Furthermore, if referencing a schema which contains an example, the example value SHALL override the example provided by the schema.

Source

classes.lisp.

Target Slot

example.

Reader Method: example ((parameter parameter))

Example of the parameter’s potential value. The example SHOULD match the specified schema and encoding properties if present. The example field is mutually exclusive of the examples field. Furthermore, if referencing a schema that contains an example, the example value SHALL override the example provided by the schema. To represent examples of media types that cannot naturally be represented in JSON or YAML, a string value can contain the example with escaping where necessary.

Source

classes.lisp.

Target Slot

example.

Generic Reader: examples (object)
Package

openapi-generator.

Methods
Reader Method: examples ((schema schema))

The value of this keyword MUST be an array. There are no restrictions placed on the values within the array. When multiple occurrences of this keyword are applicable to a single sub-instance, implementations MUST provide a flat array of all values rather than an array of arrays. This keyword can be used to provide sample JSON values associated with a particular schema, for the purpose of illustrating usage. It is RECOMMENDED that these values be valid against the associated schema. Implementations MAY use the value(s) of "default", if present, as an additional example. If "examples" is absent, "default" MAY still be used in this manner.

Source

classes.lisp.

Target Slot

examples.

Reader Method: examples ((header header))

Examples of the parameter’s potential value. Each example SHOULD contain a value in the correct format as specified in the parameter encoding. The examples field is mutually exclusive of the example field. Furthermore, if referencing a schema that contains an example, the examples value SHALL override the example provided by the schema.

Source

classes.lisp.

Target Slot

examples.

Reader Method: examples ((media-type media-type))

Examples of the media type. Each example object SHOULD match the media type and specified schema if present. The examples field is mutually exclusive of the example field. Furthermore, if referencing a schema which contains an example, the examples value SHALL override the example provided by the schema.

Source

classes.lisp.

Target Slot

examples.

Reader Method: examples ((parameter parameter))

Examples of the parameter’s potential value. Each example SHOULD contain a value in the correct format as specified in the parameter encoding. The examples field is mutually exclusive of the example field. Furthermore, if referencing a schema that contains an example, the examples value SHALL override the example provided by the schema.

Source

classes.lisp.

Target Slot

examples.

Reader Method: examples ((components components))

An object to hold reusable Example Objects.

Source

classes.lisp.

Target Slot

examples.

Generic Reader: exclusive-maximum (object)
Package

openapi-generator.

Methods
Reader Method: exclusive-maximum ((schema schema))

The value of "exclusiveMaximum" MUST be a number, representing an exclusive upper limit for a numeric instance. If the instance is a number, then the instance is valid only if it has a value strictly less than (not equal to) "exclusiveMaximum".

Source

classes.lisp.

Target Slot

exclusive-maximum.

Generic Reader: exclusive-minimum (object)
Package

openapi-generator.

Methods
Reader Method: exclusive-minimum ((schema schema))

The value of "exclusiveMinimum" MUST be a number, representing an exclusive lower limit for a numeric instance. If the instance is a number, then the instance is valid only if it has a value strictly greater than (not equal to) "exclusiveMinimum".

Source

classes.lisp.

Target Slot

exclusive-minimum.

Generic Reader: explode (object)
Package

openapi-generator.

Methods
Reader Method: explode ((header header))

When this is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters this property has no effect. When style is form, the default value is true. For all other styles, the default value is false.

Source

classes.lisp.

Target Slot

explode.

Reader Method: explode ((encoding encoding))

When this is true, property values of type array or object generate separate parameters for each value of the array, or key-value-pair of the map. For other types of properties this property has no effect. When style is form, the default value is true. For all other styles, the default value is false. This property SHALL be ignored if the request body media type is not application/x-www-form-urlencoded or multipart/form-data. If a value is explicitly defined, then the value of contentType (implicit or explicit) SHALL be ignored.

Source

classes.lisp.

Target Slot

explode.

Generic Reader: external-documentation (object)
Package

openapi-generator.

Methods
Reader Method: external-documentation ((schema schema))

Additional external documentation for this schema.

Source

classes.lisp.

Target Slot

external-documentation.

Reader Method: external-documentation ((tag tag))

Additional external documentation for this tag.

Source

classes.lisp.

Target Slot

external-documentation.

Reader Method: external-documentation ((operation operation))

Additional external documentation for this operation.

Source

classes.lisp.

Target Slot

external-documentation.

Reader Method: external-documentation ((openapi openapi))

Additional external documentation.

Source

classes.lisp.

Target Slot

externaldocs.

Generic Reader: external-value (object)
Package

openapi-generator.

Methods
Reader Method: external-value ((example example))

A URI that points to the literal example. This provides the capability to reference examples that cannot easily be included in JSON or YAML documents. The value field and externalValue field are mutually exclusive. See the rules for resolving Relative References.

Source

classes.lisp.

Target Slot

external-value.

Generic Reader: flows (object)
Package

openapi-generator.

Methods
Reader Method: flows ((security-scheme security-scheme))

An object containing configuration information for the flow types supported.

Source

classes.lisp.

Target Slot

flows.

Generic Function: function-name (path operation-type &key param-case)

Generate unique symbole name for given operation-type and path

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: function-name ((path string) (operation-type symbol) &key param-case)
Generic Function: generate-code (api name &key parse headers authorization server cookie alias)

Generate all code to be included in the main.lisp file. Includes defpackage + functions + setf alias

Package

openapi-generator.

Source

openapi-generator.lisp.

Methods
Method: generate-code (api name &key parse headers authorization server cookie alias)
Generic Function: generate-defpackage (name api &key alias)

Generate defpackage code including alias functions

Package

openapi-generator.

Source

openapi-generator.lisp.

Methods
Method: generate-defpackage (name (api openapi) &key alias)
Generic Function: generate-function (api path operation-type)

Generate functions for all types of http request

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: generate-function ((api openapi) (path string) (operation-type symbol))
Generic Function: generate-function-code (api)

Generate all function code as list

Package

openapi-generator.

Source

openapi-generator.lisp.

Methods
Method: generate-function-code ((api openapi))
Generic Function: generate-parameters (&key query headers authorization cookie parse server)

Creates code to be included in main.lisp for parameters

Package

openapi-generator.

Source

openapi-generator.lisp.

Methods
Method: generate-parameters (&key query headers authorization cookie parse server)
Generic Function: generate-slot-alias (api slot)

Create list of setf with slot as alias

Package

openapi-generator.

Source

openapi-generator.lisp.

Methods
Method: generate-slot-alias ((api openapi) (slot string))
Method: generate-slot-alias ((api openapi) (slot symbol))
Generic Function: get-description (operation-object)

Extract documentation slots summary and description from operation object

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: get-description ((operation-object operation))
Generic Function: get-headers (parameters operation)

Generate code for run-time header checking. Headers are only send, if they are supplied.

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: get-headers ((parameters list) (operation operation))
Generic Function: get-lambda-list (required-parameters optional-parameters operation-object json-body-schema)

Create the lambda list to be included in the generated function.

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: get-lambda-list ((required-parameters list) (optional-parameters list) (operation-object operation) json-body-schema)
Generic Function: get-openapi-version (openapi)

Extract Swagger/Openapi version from api spec

Package

openapi-generator.

Source

parser.lisp.

Methods
Method: get-openapi-version ((openapi openapi))
Method: get-openapi-version ((openapi hash-table))
Method: get-openapi-version ((openapi string))
Method: get-openapi-version ((openapi pathname))
Generic Function: get-optional-parameter (parameters)
Package

openapi-generator.

Methods
Method: get-optional-parameter ((parameters list))

Collect optional parameter from list of parameters

Source

function-generation.lisp.

Generic Function: get-parameter-type (type parameters)

Get list of parameters with specified type: Can be either query, path, head or cookie.

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: get-parameter-type ((type string) (parameters list))
Generic Function: get-path (path parameters)

generate path list

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: get-path ((path string) (parameters list))
Generic Function: get-primary-uri (api)

Return first server uri

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: get-primary-uri ((api openapi))
Generic Function: get-query (parameters)

Generate query (if there are parameters)

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: get-query ((parameters list))
Generic Function: get-required-parameter (parameters)
Package

openapi-generator.

Methods
Method: get-required-parameter ((parameters list))

Collect required parameter from list of parameters

Source

function-generation.lisp.

Generic Function: get-response-type (operation)
Package

openapi-generator.

Methods
Method: get-response-type ((operation operation))

Get response type. Return value can be either :json or nil

Source

function-generation.lisp.

Generic Function: get-uri-type (uri)
Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: get-uri-type ((uri string))
Generic Function: hash-copy-recursive (hash)
Package

openapi-generator.

Methods
Method: hash-copy-recursive ((hash hash-table))

Inspired by cl-hash-util:hash-copy, but performs a recursive (deep) hash-table copy which replaces all internal hash-tables with copies.
This is needed to avoid looping when working with circular json-pointers.

Source

util.lisp.

Generic Reader: head (object)
Package

openapi-generator.

Methods
Reader Method: head ((path path))

A definition of a HEAD operation on this path.

Source

classes.lisp.

Target Slot

head.

Generic Reader: header (object)
Package

openapi-generator.

Methods
Reader Method: header ((header header))

A brief description of the header. This could contain examples of use. CommonMark syntax MAY be used for rich text representation.

Source

classes.lisp.

Target Slot

description.

Generic Reader: headers (object)
Package

openapi-generator.

Methods
Reader Method: headers ((response response))

Maps a header name to its definition. [RFC7230] states header names are case insensitive. If a response header is defined with the name "Content-Type", it SHALL be ignored.

Source

classes.lisp.

Target Slot

headers.

Reader Method: headers ((encoding encoding))

A map allowing additional information to be provided as headers, for example Content-Disposition. Content-Type is described separately and SHALL be ignored in this section. This property SHALL be ignored if the request body media type is not a multipart.

Source

classes.lisp.

Target Slot

headers.

Reader Method: headers ((components components))

An object to hold reusable Header Objects.

Source

classes.lisp.

Target Slot

headers.

Generic Reader: id (object)
Package

openapi-generator.

Methods
Reader Method: id ((schema schema))

The "$id" keyword identifies a schema resource with its canonical [RFC6596] URI. Note that this URI is an identifier and not necessarily a network locator. In the case of a network-addressable URL, a schema need not be downloadable from its canonical URI. If present, the value for this keyword MUST be a string, and MUST represent a valid URI-reference [RFC3986]. This URI-reference SHOULD be normalized, and MUST resolve to an absolute-URI [RFC3986] (without a fragment), or to a URI with an empty fragment. The empty fragment form is NOT RECOMMENDED and is retained only for backwards compatibility, and because the application/schema+json media type defines that a URI with an empty fragment identifies the same resource as the same URI with the fragment removed. However, since this equivalence is not part of the RFC 3986 normalization process [RFC3986], implementers and schema authors cannot rely on generic URI libraries understanding it. Therefore, "$id" MUST NOT contain a non-empty fragment, and SHOULD NOT contain an empty fragment. The absolute-URI form MUST be considered the canonical URI, regardless of the presence or absence of an empty fragment. An empty fragment is currently allowed because older meta-schemas have an empty fragment in their $id (or previously, id). A future draft may outright forbid even empty fragments in "$id". The absolute-URI also serves as the base URI for relative URI-references in keywords within the schema resource, in accordance with RFC 3986 section 5.1.1 [RFC3986] regarding base URIs embedded in content. The presence of "$id" in a subschema indicates that the subschema constitutes a distinct schema resource within a single schema document. Furthermore, in accordance with RFC 3986 section 5.1.2 [RFC3986] regarding encapsulating entities, if an "$id" in a subschema is a relative URI-reference, the base URI for resolving that reference is the URI of the parent schema resource. If no parent schema object explicitly identifies itself as a resource with "$id", the base URI is that of the entire document

Source

classes.lisp.

Target Slot

id.

Generic Reader: identifier (object)
Package

openapi-generator.

Methods
Reader Method: identifier ((license license))

An SPDX license expression for the API. The identifier field is mutually exclusive of the url field.

Source

classes.lisp.

Target Slot

identifier.

Generic Reader: implicit (object)
Package

openapi-generator.

Methods
Reader Method: implicit ((o-auth-flows o-auth-flows))

Configuration for the OAuth Implicit flow

Source

classes.lisp.

Target Slot

implicit.

Generic Reader: in (object)
Package

openapi-generator.

Methods
Reader Method: in ((security-scheme security-scheme))

The location of the API key. Valid values are "query", "header" or "cookie".

Source

classes.lisp.

Target Slot

in.

Reader Method: in ((parameter parameter))

The location of the parameter. Possible values are "query", "header", "path" or "cookie".

Source

classes.lisp.

Target Slot

in.

Generic Reader: info (object)
Package

openapi-generator.

Methods
Reader Method: info ((apis-guru-api-version apis-guru-api-version))

Copy of ‘info‘ section from OpenAPI definition

Source

collections.lisp.

Target Slot

info.

Reader Method: info ((openapi openapi))

Provides metadata about the API. The metadata MAY be used by tooling as required.

Source

classes.lisp.

Target Slot

info.

Generic Reader: instance-location (object)
Package

openapi-generator.

Methods
Reader Method: instance-location ((schema schema))

The location of the JSON value within the instance being validated. The value MUST be expressed as a JSON Pointer.

Source

classes.lisp.

Target Slot

instance-location.

Generic Function: intern-param (s)

Convert string or list of strings to param-cased symbol(s).

Package

openapi-generator.

Source

util.lisp.

Methods
Method: intern-param ((s string))
Method: intern-param ((s null))
Method: intern-param ((s vector))
Method: intern-param ((s list))
Generic Reader: items (object)
Package

openapi-generator.

Methods
Reader Method: items ((schema schema))

The value of "items" MUST be a valid JSON Schema.
This keyword applies its subschema to all instance elements at indexes greater than the length of the "prefixItems" array in the same schema object, as reported by the annotation result of that "prefixItems" keyword. If no such annotation result exists, "items" applies its subschema to all instance array elements. Note that the behavior of "items" without "prefixItems" is identical to that of the schema form of "items" in prior drafts. When "prefixItems" is present, the behavior of "items" is identical to the former "additionalItems" keyword. If the "items" subschema is applied to any positions within the instance array, it produces an annotation result of boolean true, indicating that all remaining array elements have been evaluated against this keyword’s subschema. This annotation affects the behavior of "unevaluatedItems" in the Unevaluated vocabulary.
Omitting this keyword has the same assertion behavior as an empty schema.
Implementations MAY choose to implement or optimize this keyword in another way that produces the same effect, such as by directly checking for the presence and size of a "prefixItems" array. Implementations that do not support annotation collection MUST do so.

Source

classes.lisp.

Target Slot

items.

Generic Function: json-body-schema (operation)
Package

openapi-generator.

Methods
Method: json-body-schema ((operation operation))

Return application/json media type or nil.

Source

function-generation.lisp.

Generic Function: json-content (schema)
Package

openapi-generator.

Methods
Method: json-content ((schema schema))

Generate the code to validate request-body or generate it according to the spec.

Source

function-generation.lisp.

Generic Reader: json-schema-dialect (object)
Package

openapi-generator.

Methods
Reader Method: json-schema-dialect ((openapi-3.1 openapi-3.1))

The default value for the $schema keyword within Schema Objects contained within this OAS document. This MUST be in the form of a URI.

Source

classes.lisp.

Target Slot

json-schema-dialect.

Generic Reader: keyword-location (object)
Package

openapi-generator.

Methods
Reader Method: keyword-location ((schema schema))

The relative location of the validating keyword that follows the validation path. The value MUST be expressed as a JSON Pointer, and it MUST include any by-reference applicators such as "$ref" or "$dynamicRef".

/properties/width/$ref/minimum

Note that this pointer may not be resolvable by the normal JSON Pointer process due to the inclusion of these by-reference applicator keywords.

Source

classes.lisp.

Target Slot

keyword-location.

Generic Reader: license (object)
Package

openapi-generator.

Methods
Reader Method: license ((info info))

The license information for the exposed API.

Source

classes.lisp.

Target Slot

license.

Package

openapi-generator.

Methods

A map of operations links that can be followed from the response. The key of the map is a short name for the link, following the naming constraints of the names for Component Objects.

Source

classes.lisp.

Target Slot

links.

An object to hold reusable Link Objects.

Source

classes.lisp.

Target Slot

links.

Generic Function: list-symbols (list)

Filter non-symols out of list

Package

openapi-generator.

Source

util.lisp.

Methods
Method: list-symbols ((list list))
Generic Reader: mapping (object)
Package

openapi-generator.

Methods
Reader Method: mapping ((discriminator discriminator))

An object to hold mappings between payload values and schema names or references.

Source

classes.lisp.

Target Slot

mapping.

Generic Reader: maximum (object)
Package

openapi-generator.

Methods
Reader Method: maximum ((schema schema))

The value of "maximum" MUST be a number, representing an inclusive upper limit for a numeric instance.
If the instance is a number, then this keyword validates only if the instance is less than or exactly equal to "maximum".

Source

classes.lisp.

Target Slot

maximum.

Generic Reader: maximum-contains (object)
Package

openapi-generator.

Methods
Reader Method: maximum-contains ((schema schema))

The value of this keyword MUST be a non-negative integer.
If "contains" is not present within the same schema object, then this keyword has no effect. An instance array is valid against "maxContains" in two ways, depending on the form of the annotation result of an adjacent "contains" [json-schema] keyword. The first way is if the annotation result is an array and the length of that array is less than or equal to the "maxContains" value. The second way is if the annotation result is a boolean "true" and the instance array length is less than or equal to the "maxContains" value.

Source

classes.lisp.

Target Slot

maximum-contains.

Generic Reader: maximum-items (object)
Package

openapi-generator.

Methods
Reader Method: maximum-items ((schema schema))

The value of this keyword MUST be a non-negative integer. An array instance is valid against "maxItems" if its size is less than, or equal to, the value of this keyword.

Source

classes.lisp.

Target Slot

maximum-items.

Generic Reader: maximum-length (object)
Package

openapi-generator.

Methods
Reader Method: maximum-length ((schema schema))

The value of this keyword MUST be a non-negative integer. A string instance is valid against this keyword if its length is less than, or equal to, the value of this keyword. The length of a string instance is defined as the number of its characters as defined by RFC 8259 [RFC8259].

Source

classes.lisp.

Target Slot

maximum-length.

Generic Reader: maximum-properties (object)
Package

openapi-generator.

Methods
Reader Method: maximum-properties ((schema schema))

The value of this keyword MUST be a non-negative integer.
An object instance is valid against "maxProperties" if its number of properties is less than, or equal to, the value of this keyword.

Source

classes.lisp.

Target Slot

maximum-properties.

Generic Reader: minimum (object)
Package

openapi-generator.

Methods
Reader Method: minimum ((schema schema))

The value of "minimum" MUST be a number, representing an inclusive lower limit for a numeric instance. If the instance is a number, then this keyword validates only if the instance is greater than or exactly equal to "minimum".

Source

classes.lisp.

Target Slot

minimum.

Generic Reader: minimum-contains (object)
Package

openapi-generator.

Methods
Reader Method: minimum-contains ((schema schema))

The value of this keyword MUST be a non-negative integer.
If "contains" is not present within the same schema object, then this keyword has no effect. An instance array is valid against "minContains" in two ways, depending on the form of the annotation result of an adjacent "contains" [json-schema] keyword. The first way is if the annotation result is an array and the length of that array is greater than or equal to the "minContains" value. The second way is if the annotation result is a boolean "true" and the instance array length is greater than or equal to the "minContains" value. A value of 0 is allowed, but is only useful for setting a range of occurrences from 0 to the value of "maxContains". A value of 0 causes "minContains" and "contains" to always pass validation (but validation can still fail against a "maxContains" keyword). Omitting this keyword has the same behavior as a value of 1.

Source

classes.lisp.

Target Slot

minimum-contains.

Generic Reader: minimum-items (object)
Package

openapi-generator.

Methods
Reader Method: minimum-items ((schema schema))

The value of this keyword MUST be a non-negative integer. An array instance is valid against "minItems" if its size is greater than, or equal to, the value of this keyword. Omitting this keyword has the same behavior as a value of 0.

Source

classes.lisp.

Target Slot

minimum-items.

Generic Reader: minimum-length (object)
Package

openapi-generator.

Methods
Reader Method: minimum-length ((schema schema))

The value of this keyword MUST be a non-negative integer. A string instance is valid against this keyword if its length is greater than, or equal to, the value of this keyword. The length of a string instance is defined as the number of its characters as defined by RFC 8259 [RFC8259]. Omitting this keyword has the same behavior as a value of 0.

Source

classes.lisp.

Target Slot

minimum-length.

Generic Reader: minimum-properties (object)
Package

openapi-generator.

Methods
Reader Method: minimum-properties ((schema schema))

The value of this keyword MUST be a non-negative integer.
An object instance is valid against "minProperties" if its number of properties is greater than, or equal to, the value of this keyword. Omitting this keyword has the same behavior as a value of 0.

Source

classes.lisp.

Target Slot

minimum-properties.

Generic Reader: multiple-of (object)
Package

openapi-generator.

Methods
Reader Method: multiple-of ((schema schema))

The value of "multipleOf" MUST be a number, strictly greater than 0.
A numeric instance is valid only if division by this keyword’s value results in an integer.

Source

classes.lisp.

Target Slot

multiple-of.

Generic Reader: name (object)
Package

openapi-generator.

Methods
Reader Method: name ((security-scheme security-scheme))

The name of the header, query or cookie parameter to be used.

Source

classes.lisp.

Target Slot

name.

Reader Method: name ((xml xml))

Replaces the name of the element/attribute used for the described schema property. When defined within items, it will affect the name of the individual XML elements within the list. When defined alongside type being array (outside the items), it will affect the wrapping element and only if wrapped is true. If wrapped is false, it will be ignored.

Source

classes.lisp.

Target Slot

name.

Reader Method: name ((tag tag))

The name of the tag.

Source

classes.lisp.

Target Slot

name.

Reader Method: name ((parameter parameter))

The name of the parameter. Parameter names are case sensitive.

If in is "path", the name field MUST correspond to a template expression occurring within the path field in the Paths Object. See Path Templating for further information. If in is "header" and the name field is "Accept", "Content-Type" or "Authorization", the parameter definition SHALL be ignored.
For all other cases, the name corresponds to the parameter name used by the in property.

Source

classes.lisp.

Target Slot

name.

Reader Method: name ((license license))

The license name used for the API.

Source

classes.lisp.

Target Slot

name.

Reader Method: name ((contact contact))

The identifying name of the contact person/organization.

Source

classes.lisp.

Target Slot

name.

Generic Reader: namespace (object)
Package

openapi-generator.

Methods
Reader Method: namespace ((xml xml))

The URI of the namespace definition. This MUST be in the form of an absolute URI.

Source

classes.lisp.

Target Slot

namespace.

Generic Reader: nullable (object)
Package

openapi-generator.

Methods
Reader Method: nullable ((schema schema))

Marks a slot that can be null.

Source

classes.lisp.

Target Slot

nullable.

Generic Function: object-name-symbols (objects)

Outputs list with the name-symbols of the parameter objects in the input list.

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: object-name-symbols ((objects list))
Generic Reader: one-of (object)
Package

openapi-generator.

Methods
Reader Method: one-of ((schema schema))

This keyword’s value MUST be a non-empty array. Each item of the array MUST be a valid JSON Schema.
An instance validates successfully against this keyword if it validates successfully against exactly one schema defined by this keyword’s value.

Source

classes.lisp.

Target Slot

one-of.

Generic Reader: open-id-connect-url (object)
Package

openapi-generator.

Methods
Reader Method: open-id-connect-url ((security-scheme security-scheme))

OpenId Connect URL to discover OAuth2 configuration values. This MUST be in the form of a URL. The OpenID Connect standard requires the use of TLS.

Source

classes.lisp.

Target Slot

open-id-connect-url.

Generic Reader: openapi (object)
Package

openapi-generator.

Methods
Reader Method: openapi ((openapi openapi))

This string MUST be the version number of the OpenAPI Specification that the OpenAPI document uses. The openapi field SHOULD be used by tooling to interpret the OpenAPI document. This is not related to the API info.version string.

Source

classes.lisp.

Target Slot

openapi.

Generic Reader: operation-id (object)
Package

openapi-generator.

Methods
Reader Method: operation-id ((link link))

The name of an existing, resolvable OAS operation, as defined with a unique operationId. This field is mutually exclusive of the operationRef field.

Source

classes.lisp.

Target Slot

operation-id.

Reader Method: operation-id ((operation operation))

Unique string used to identify the operation. The id MUST be unique among all operations described in the API. The operationId value is case-sensitive. Tools and libraries MAY use the operationId to uniquely identify an operation, therefore, it is RECOMMENDED to follow common programming naming conventions.

Source

classes.lisp.

Target Slot

operation-id.

Generic Reader: operation-ref (object)
Package

openapi-generator.

Methods
Reader Method: operation-ref ((link link))

A relative or absolute URI reference to an OAS operation. This field is mutually exclusive of the operationId field, and MUST point to an Operation Object. Relative operationRef values MAY be used to locate an existing Operation Object in the OpenAPI definition. See the rules for resolving Relative References.

Source

classes.lisp.

Target Slot

operation-ref.

Generic Reader: options (object)
Package

openapi-generator.

Methods
Reader Method: options ((path path))

A definition of a OPTIONS operation on this path.

Source

classes.lisp.

Target Slot

options.

Generic Function: parameter-schema-type (parameter)

Return the parameter type from schema

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: parameter-schema-type ((parameter parameter))
Generic Reader: parameters (object)
Package

openapi-generator.

Methods
Reader Method: parameters ((link link))

A map representing parameters to pass to an operation as specified with operationId or identified via operationRef. The key is the parameter name to be used, whereas the value can be a constant or an expression to be evaluated and passed to the linked operation. The parameter name can be qualified using the parameter location [{in}.]{name} for operations that use the same parameter name in different locations (e.g. path.id).

Source

classes.lisp.

Target Slot

parameters.

Reader Method: parameters ((operation operation))

A list of parameters that are applicable for this operation. If a parameter is already defined at the Path Item, the new definition will override it but can never remove it. The list MUST NOT include duplicated parameters. A unique parameter is defined by a combination of a name and location. The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object’s components/parameters.

Source

classes.lisp.

Target Slot

parameters.

Reader Method: parameters ((path path))

A list of parameters that are applicable for all the operations described under this path. These parameters can be overridden at the operation level, but cannot be removed there. The list MUST NOT include duplicated parameters. A unique parameter is defined by a combination of a name and location. The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object’s components/parameters.

Source

classes.lisp.

Target Slot

parameters.

Reader Method: parameters ((components components))

An object to hold reusable Parameter Objects.

Source

classes.lisp.

Target Slot

parameters.

Generic Function: parse-apis-guru-id (file-name apis-guru-id)

parse api guru name with parse url

Package

openapi-generator.

Source

parser.lisp.

Methods
Method: parse-apis-guru-id ((file-name string) (apis-guru-id string))
Generic Function: parse-directory (source-directory target-directory)

Parse file from source directory to target-directory as usable JSON Openapi 3.X

Package

openapi-generator.

Source

parser.lisp.

Methods
Method: parse-directory ((source-directory pathname) (target-directory pathname))
Generic Function: parse-string (file-name file)

Safe string to file in local folder

Package

openapi-generator.

Source

parser.lisp.

Methods
Method: parse-string ((file-name string) (file string))
Generic Function: parse-url (name url)

Parse url into package and save file in openapi-generator/data.
Supported are: url / apis-guru / path / name (in openapi-generator/data folder)

Package

openapi-generator.

Source

parser.lisp.

Methods
Method: parse-url ((file-name string) (url string))
Method: parse-url ((file-name null) (url string))
Generic Reader: password (object)
Package

openapi-generator.

Methods
Reader Method: password ((o-auth-flows o-auth-flows))

Configuration for the OAuth Resource Owner Password flow

Source

classes.lisp.

Target Slot

password.

Generic Reader: patch (object)
Package

openapi-generator.

Methods
Reader Method: patch ((path path))

A definition of a PATCH operation on this path.

Source

classes.lisp.

Target Slot

patch.

Generic Reader: path-delete (object)
Package

openapi-generator.

Methods
Reader Method: path-delete ((path path))

A definition of a DELETE operation on this path.

Source

classes.lisp.

Target Slot

delete.

Generic Reader: path-get (object)
Package

openapi-generator.

Methods
Reader Method: path-get ((path path))

A definition of a GET operation on this path.

Source

classes.lisp.

Target Slot

get.

Generic Reader: path-items (object)
Package

openapi-generator.

Methods
Reader Method: path-items ((components components))

An object to hold reusable Path Item Object.

Source

classes.lisp.

Target Slot

path-items.

Generic Function: path-list (path)

Convert path string into a list of strings and symbols

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: path-list ((path string))
Generic Function: path-list-stringified (path-list parameter-list)

Get a list where symbols that will have a value of type strings are untouched, while symbols will have numbers values are converted into strings at run time.

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: path-list-stringified ((path-list list) (parameter-list list))
Generic Reader: path-trace (object)
Package

openapi-generator.

Methods
Reader Method: path-trace ((path path))

A definition of a TRACE operation on this path.

Source

classes.lisp.

Target Slot

trace.

Generic Reader: paths (object)
Package

openapi-generator.

Methods
Reader Method: paths ((openapi openapi))

The available paths and operations for the API.
Holds the relative paths to the individual endpoints and their operations. The path is appended to the URL from the Server Object in order to construct the full URL. The Paths MAY be empty, due to Access Control List (ACL) constraints.

Source

classes.lisp.

Target Slot

paths.

Generic Reader: pattern (object)
Package

openapi-generator.

Methods
Reader Method: pattern ((schema schema))

The value of this keyword MUST be a string.
This string SHOULD be a valid regular expression, according to the ECMA-262 regular expression dialect. A string instance is considered valid if the regular expression matches the instance successfully. Recall: regular expressions are not implicitly anchored.

Source

classes.lisp.

Target Slot

pattern.

Generic Reader: pattern-properties (object)
Package

openapi-generator.

Methods
Reader Method: pattern-properties ((schema schema))

The value of "patternProperties" MUST be an object.
Each property name of this object SHOULD be a valid regular expression, according to the ECMA-262 regular expression dialect. Each property value of this object MUST be a valid JSON Schema.
Validation succeeds if, for each instance name that matches any regular expressions that appear as a property name in this keyword’s value, the child instance for that name successfully validates against each schema that corresponds to a matching regular expression. The annotation result of this keyword is the set of instance property names matched by this keyword. This annotation affects the behavior of "additionalProperties" (in this vocabulary) and "unevaluatedProperties" (in the Unevaluated vocabulary).
Omitting this keyword has the same assertion behavior as an empty object.

Source

classes.lisp.

Target Slot

pattern-properties.

Generic Reader: post (object)
Package

openapi-generator.

Methods
Reader Method: post ((path path))

A definition of a POST operation on this path.

Source

classes.lisp.

Target Slot

post.

Generic Reader: preferred (object)
Package

openapi-generator.

Methods
Reader Method: preferred ((apis-guru-api apis-guru-api))

Recommended version

Source

collections.lisp.

Target Slot

preferred.

Generic Reader: prefix (object)
Package

openapi-generator.

Methods
Reader Method: prefix ((xml xml))

The prefix to be used for the name.

Source

classes.lisp.

Target Slot

prefix.

Generic Reader: prefix-items (object)
Package

openapi-generator.

Methods
Reader Method: prefix-items ((schema schema))

The value of "prefixItems" MUST be a non-empty array of valid JSON Schemas.
Validation succeeds if each element of the instance validates against the schema at the same position, if any. This keyword does not constrain the length of the array. If the array is longer than this keyword’s value, this keyword validates only the prefix of matching length.
This keyword produces an annotation value which is the largest index to which this keyword applied a subschema. The value MAY be a boolean true if a subschema was applied to every index of the instance, such as is produced by the "items" keyword. This annotation affects the behavior of "items" and "unevaluatedItems". Omitting this keyword has the same assertion behavior as an empty array.

Source

classes.lisp.

Target Slot

prefix-items.

Generic Reader: properties (object)
Package

openapi-generator.

Methods
Reader Method: properties ((schema schema))

The value of "properties" MUST be an object.
Each value of this object MUST be a valid JSON Schema.
Validation succeeds if, for each name that appears in both the instance and as a name within this keyword’s value, the child instance for that name successfully validates against the corresponding schema.
The annotation result of this keyword is the set of instance property names matched by this keyword. This annotation affects the behavior of "additionalProperties" (in this vocabulary) and "unevaluatedProperties" in the Unevaluated vocabulary. Omitting this keyword has the same assertion behavior as an empty object.

Source

classes.lisp.

Target Slot

properties.

Generic Reader: property-name (object)
Package

openapi-generator.

Methods
Reader Method: property-name ((discriminator discriminator))

The name of the property in the payload that will hold the discriminator value.

Source

classes.lisp.

Target Slot

property-name.

Generic Reader: property-names (object)
Package

openapi-generator.

Methods
Reader Method: property-names ((schema schema))

The value of "propertyNames" MUST be a valid JSON Schema.
If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema. Note the property name that the schema is testing will always be a string. Omitting this keyword has the same behavior as an empty schema.

Source

classes.lisp.

Target Slot

property-names.

Generic Reader: put (object)
Package

openapi-generator.

Methods
Reader Method: put ((path path))

A definition of a PUT operation on this path.

Source

classes.lisp.

Target Slot

put.

Generic Reader: read-only (object)
Package

openapi-generator.

Methods
Reader Method: read-only ((schema schema))

The value of these keywords MUST be a boolean. When multiple occurrences of these keywords are applicable to a single sub-instance, the resulting behavior SHOULD be as for a true value if any occurrence specifies a true value, and SHOULD be as for a false value otherwise.
If "readOnly" has a value of boolean true, it indicates that the value of the instance is managed exclusively by the owning authority, and attempts by an application to modify the value of this property are expected to be ignored or rejected by that owning authority.
An instance document that is marked as "readOnly" for the entire document MAY be ignored if sent to the owning authority, or MAY result in an error, at the authority’s discretion.
For example, "readOnly" would be used to mark a database-generated serial number as read-only, while "writeOnly" would be used to mark a password input field. These keywords can be used to assist in user interface instance generation. In particular, an application MAY choose to use a widget that hides input values as they are typed for write-only fields. Omitting these keywords has the same behavior as values of false

Source

classes.lisp.

Target Slot

read-only.

Generic Reader: reference (object)
Package

openapi-generator.

Methods
Reader Method: reference ((security-scheme security-scheme))

automatically generated reader method

Source

classes.lisp.

Target Slot

reference.

Reader Method: reference ((reference reference))

The reference identifier. This MUST be in the form of a URI.

Source

classes.lisp.

Target Slot

reference.

Reader Method: reference ((header header))

automatically generated reader method

Source

classes.lisp.

Target Slot

reference.

Reader Method: reference ((link link))

automatically generated reader method

Source

classes.lisp.

Target Slot

reference.

Reader Method: reference ((example example))

automatically generated reader method

Source

classes.lisp.

Target Slot

reference.

Reader Method: reference ((response response))

automatically generated reader method

Source

classes.lisp.

Target Slot

reference.

Reader Method: reference ((request-body request-body))

automatically generated reader method

Source

classes.lisp.

Target Slot

reference.

Reader Method: reference ((parameter parameter))

automatically generated reader method

Source

classes.lisp.

Target Slot

reference.

Reader Method: reference ((path path))

Allows for a referenced definition of this path item. The referenced structure MUST be in the form of a Path Item Object. In case a Path Item Object field appears both in the defined object and the referenced object, the behavior is undefined. See the rules for resolving Relative References.

Source

classes.lisp.

Target Slot

reference.

Reader Method: reference ((components components))

automatically generated reader method

Source

classes.lisp.

Target Slot

reference.

Generic Reader: referenece (object)
Package

openapi-generator.

Methods
Reader Method: referenece ((schema schema))

Direct References with "$ref"

The "$ref" keyword is an applicator that is used to reference a statically identified schema. Its results are the results of the referenced schema. Note that this definition of how the results are determined means that other keywords can appear alongside of "$ref" in the same schema object. The value of the "$ref" keyword MUST be a string which is a URI-Reference. Resolved against the current URI base, it produces the URI of the schema to apply. This resolution is safe to perform on schema load, as the process of evaluating an instance cannot change how the reference resolves.

Source

classes.lisp.

Target Slot

reference.

Generic Reader: refresh-url (object)
Package

openapi-generator.

Methods
Reader Method: refresh-url ((o-auth-flow o-auth-flow))

The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.

Source

classes.lisp.

Target Slot

refresh-url.

Generic Reader: request-bodies (object)
Package

openapi-generator.

Methods
Reader Method: request-bodies ((components components))

An object to hold reusable Request Body Objects.

Source

classes.lisp.

Target Slot

request-bodies.

Generic Reader: request-body (object)
Package

openapi-generator.

Methods
Reader Method: request-body ((link link))

A literal value or {expression} to use as a request body when calling the target operation.

Source

classes.lisp.

Target Slot

request-body.

Reader Method: request-body ((operation operation))

The request body applicable for this operation. The requestBody is fully supported in HTTP methods where the HTTP 1.1 specification [RFC7231] has explicitly defined semantics for request bodies. In other cases where the HTTP spec is vague (such as GET, HEAD and DELETE), requestBody is permitted but does not have well-defined semantics and SHOULD be avoided if possible.

Source

classes.lisp.

Target Slot

request-body.

Generic Reader: required (object)
Package

openapi-generator.

Methods
Reader Method: required ((schema schema))

The value of this keyword MUST be an array. Elements of this array, if any, MUST be strings, and MUST be unique.
An object instance is valid against this keyword if every item in the array is the name of a property in the instance. Omitting this keyword has the same behavior as an empty array.

Source

classes.lisp.

Target Slot

required.

Reader Method: required ((header header))

Determines whether this header is mandatory.

Source

classes.lisp.

Target Slot

required.

Reader Method: required ((parameter parameter))

Determines whether this parameter is mandatory. If the parameter location is "path", this property is REQUIRED and its value MUST be true. Otherwise, the property MAY be included and its default value is false.

Source

classes.lisp.

Target Slot

required.

Generic Reader: responses (object)
Package

openapi-generator.

Methods
Reader Method: responses ((operation operation))

The list of possible responses as they are returned from executing this operation.

A container for the expected responses of an operation. The container maps a HTTP response code to the expected response.

The documentation is not necessarily expected to cover all possible HTTP response codes because they may not be known in advance. However, documentation is expected to cover a successful operation response and any known errors.

The default MAY be used as a default response object for all HTTP codes that are not covered individually by the Responses Object.

The Responses Object MUST contain at least one response code, and if only one response code is provided it SHOULD be the response for a successful operation call.

Source

classes.lisp.

Target Slot

responses.

Reader Method: responses ((components components))

An object to hold reusable Response Objects.

Source

classes.lisp.

Target Slot

responses.

Generic Reader: schema (object)
Package

openapi-generator.

Methods
Reader Method: schema ((schema schema))

Specifying Schema Dialects

It is important for tooling to be able to determine which dialect or meta-schema any given resource wishes to be processed with: JSON Schema Core, JSON Schema Validation, OpenAPI Schema dialect, or some custom meta-schema.

The $schema keyword MAY be present in any root Schema Object, and if present MUST be used to determine which dialect should be used when processing the schema. This allows use of Schema Objects which comply with other drafts of JSON Schema than the default Draft 2020-12 support. Tooling MUST support the OAS dialect schema id, and MAY support additional values of $schema.

To allow use of a different default $schema value for all Schema Objects contained within an OAS document, a jsonSchemaDialect value may be set within the OpenAPI Object. If this default is not set, then the OAS dialect schema id MUST be used for these Schema Objects. The value of $schema within a Schema Object always overrides any default.

When a Schema Object is referenced from an external resource which is not an OAS document (e.g. a bare JSON Schema resource), then the value of the $schema keyword for schemas within that resource MUST follow JSON Schema rules

Source

classes.lisp.

Target Slot

schema.

Reader Method: schema ((header header))

The schema defining the type used for the parameter.

Source

classes.lisp.

Target Slot

schema.

Reader Method: schema ((media-type media-type))

The schema defining the content of the request, response, or parameter.

Source

classes.lisp.

Target Slot

schema.

Reader Method: schema ((parameter parameter))

The schema defining the type used for the parameter.

Source

classes.lisp.

Target Slot

schema.

Reader Method: schema ((openapi openapi))

automatically generated reader method

Source

classes.lisp.

Target Slot

schema.

Generic Reader: schema-if (object)
Package

openapi-generator.

Methods
Reader Method: schema-if ((schema schema))

This keyword’s value MUST be a valid JSON Schema.
This validation outcome of this keyword’s subschema has no direct effect on the overall validation result. Rather, it controls which of the "then" or "else" keywords are evaluated. Instances that successfully validate against this keyword’s subschema MUST also be valid against the subschema value of the "then" keyword, if present.
Instances that fail to validate against this keyword’s subschema MUST also be valid against the subschema value of the "else" keyword, if present.
If annotations (Section 7.7) are being collected, they are collected from this keyword’s subschema in the usual way, including when the keyword is present without either "then" or "else".

Source

classes.lisp.

Target Slot

if.

Generic Reader: schema-not (object)
Package

openapi-generator.

Methods
Reader Method: schema-not ((schema schema))

This keyword’s value MUST be a valid JSON Schema.
An instance is valid against this keyword if it fails to validate successfully against the schema defined by this keyword.

Source

classes.lisp.

Target Slot

not.

Generic Reader: schema-type (object)
Package

openapi-generator.

Methods
Reader Method: schema-type ((schema schema))

The value of this keyword MUST be either a string or an array. If it is an array, elements of the array MUST be strings and MUST be unique.
String values MUST be one of the six primitive types ("null", "boolean", "object", "array", number, or string"), or "integer" which matches any number with a zero fractional part.
If the value of type is a string, then an instance validates successfully if its type matches the type represented by the value of the string. If the value of type is an array, then an instance validates successfully if its type matches any of the types indicated by the strings in the array.

Source

classes.lisp.

Target Slot

type.

Generic Reader: schemas (object)
Package

openapi-generator.

Methods
Reader Method: schemas ((components components))

An object to hold reusable Schema Objects.

Source

classes.lisp.

Target Slot

schemas.

Generic Reader: scheme (object)
Package

openapi-generator.

Methods
Reader Method: scheme ((security-scheme security-scheme))

The name of the HTTP Authorization scheme to be used in the Authorization header as defined in [RFC7235]. The values used SHOULD be registered in the IANA Authentication Scheme registry.

Source

classes.lisp.

Target Slot

scheme.

Generic Reader: scopes (object)
Package

openapi-generator.

Methods
Reader Method: scopes ((o-auth-flow o-auth-flow))

The available scopes for the OAuth2 security scheme. A map between the scope name and a short description for it. The map MAY be empty.

Source

classes.lisp.

Target Slot

scopes.

Generic Reader: security (object)
Package

openapi-generator.

Methods
Reader Method: security ((operation operation))

A declaration of which security mechanisms can be used for this operation. The list of values includes alternative security requirement objects that can be used. Only one of the security requirement objects need to be satisfied to authorize a request. To make security optional, an empty security requirement ({}) can be included in the array. This definition overrides any declared top-level security. To remove a top-level security declaration, an empty array can be used.

Source

classes.lisp.

Target Slot

security.

Generic Reader: security-scheme-type (object)
Package

openapi-generator.

Methods
Reader Method: security-scheme-type ((security-scheme security-scheme))

The type of the security scheme. Valid values are "apiKey", "http", "mutualTLS", "oauth2", "openIdConnect".

Source

classes.lisp.

Target Slot

type.

Generic Reader: security-schemes (object)
Package

openapi-generator.

Methods
Reader Method: security-schemes ((components components))

An object to hold reusable Security Scheme Objects.

Source

classes.lisp.

Target Slot

security-schemes.

Generic Reader: server (object)
Package

openapi-generator.

Methods
Reader Method: server ((link link))

server object to be used by the target operation.

Source

classes.lisp.

Target Slot

server.

Generic Reader: servers (object)
Package

openapi-generator.

Methods
Reader Method: servers ((operation operation))

An alternative server array to service this operation. If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by this value.

Source

classes.lisp.

Target Slot

servers.

Reader Method: servers ((path path))

An alternative server array to service all operations in this path.

Source

classes.lisp.

Target Slot

servers.

Reader Method: servers ((openapi openapi))

An array of Server Objects, which provide connectivity information to a target server. If the servers property is not provided, or is an empty array, the default value would be a Server Object with a url value of /.

Source

classes.lisp.

Target Slot

servers.

Generic Reader: style (object)
Package

openapi-generator.

Methods
Reader Method: style ((header header))

Describes how the parameter value will be serialized depending on the type of the parameter value. Default value: simple.

Source

classes.lisp.

Target Slot

style.

Reader Method: style ((encoding encoding))

Describes how a specific property value will be serialized depending on its type. See Parameter Object for details on the style property. The behavior follows the same values as query parameters, including default values. This property SHALL be ignored if the request body media type is not application/x-www-form-urlencoded or multipart/form-data. If a value is explicitly defined, then the value of contentType (implicit or explicit) SHALL be ignored.

Source

classes.lisp.

Target Slot

style.

Reader Method: style ((parameter parameter))

When this is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters this property has no effect. When style is form, the default value is true. For all other styles, the default value is false.

Source

classes.lisp.

Target Slot

explode.

Generic Reader: summary (object)
Package

openapi-generator.

Methods
Reader Method: summary ((reference reference))

A short summary which by default SHOULD override that of the referenced component. If the referenced object-type does not allow a summary field, then this field has no effect.

Source

classes.lisp.

Target Slot

summary.

Reader Method: summary ((example example))

Short description for the example.

Source

classes.lisp.

Target Slot

summary.

Reader Method: summary ((operation operation))

A short summary of what the operation does.

Source

classes.lisp.

Target Slot

summary.

Reader Method: summary ((path path))

An optional, string summary, intended to apply to all operations in this path.

Source

classes.lisp.

Target Slot

summary.

Reader Method: summary ((info info))

A short summary of the API.

Source

classes.lisp.

Target Slot

summary.

Generic Reader: tags (object)
Package

openapi-generator.

Methods
Reader Method: tags ((operation operation))

A list of tags for API documentation control. Tags can be used for logical grouping of operations by resources or any other qualifier.

Source

classes.lisp.

Target Slot

tags.

Reader Method: tags ((openapi openapi))

A list of tags used by the document with additional metadata. The order of the tags can be used to reflect on their order by the parsing tools. Not all tags that are used by the Operation Object must be declared. The tags that are not declared MAY be organized randomly or based on the tools’ logic. Each tag name in the list MUST be unique.

Source

classes.lisp.

Target Slot

tags.

Generic Reader: terms-of-service (object)
Package

openapi-generator.

Methods
Reader Method: terms-of-service ((info info))

A URL to the Terms of Service for the API. This MUST be in the form of a URL.

Source

classes.lisp.

Target Slot

terms-of-service.

Generic Reader: then (object)
Package

openapi-generator.

Methods
Reader Method: then ((schema schema))

This keyword’s value MUST be a valid JSON Schema.
When "if" is present, and the instance successfully validates against its subschema, then validation succeeds against this keyword if the instance also successfully validates against this keyword’s subschema.
This keyword has no effect when "if" is absent, or when the instance fails to validate against its subschema. Implementations MUST NOT evaluate the instance against this keyword, for either validation or annotation collection purposes, in such cases.

Source

classes.lisp.

Target Slot

then.

Generic Reader: title (object)
Package

openapi-generator.

Methods
Reader Method: title ((path-item-or-reference path-item-or-reference))

automatically generated reader method

Source

classes.lisp.

Target Slot

title.

Reader Method: title ((schema schema))

Can be used to decorate a user interface with information about the data produced by this user interface. A title will preferably be short.

Source

classes.lisp.

Target Slot

title.

Reader Method: title ((info info))

The title of the API.

Source

classes.lisp.

Target Slot

title.

Generic Reader: token-url (object)
Package

openapi-generator.

Methods
Reader Method: token-url ((o-auth-flow o-auth-flow))

The token URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.

Source

classes.lisp.

Target Slot

token-url.

Generic Function: type-conversion (json-type)

Convert json-type string or list of strings to lisp types.

Package

openapi-generator.

Source

function-generation.lisp.

Methods
Method: type-conversion ((json-type string))
Method: type-conversion ((json-type vector))
Method: type-conversion ((json-type null))
Generic Reader: unevaluated-items (object)
Package

openapi-generator.

Methods
Reader Method: unevaluated-items ((schema schema))

The value of "unevaluatedItems" MUST be a valid JSON Schema.
The behavior of this keyword depends on the annotation results of adjacent keywords that apply to the instance location being validated. Specifically, the annotations from "prefixItems", "items", and "contains", which can come from those keywords when they are adjacent to the "unevaluatedItems" keyword. Those three annotations, as well as "unevaluatedItems", can also result from any and all adjacent in-place applicator (Section 10.2) keywords. This includes but is not limited to the in-place applicators defined in this document. If no relevant annotations are present, the "unevaluatedItems" subschema MUST be applied to all locations in the array. If a boolean true value is present from any of the relevant annotations, "unevaluatedItems" MUST be ignored. Otherwise, the subschema MUST be applied to any index greater than the largest annotation value for "prefixItems", which does not appear in any annotation value for "contains".
This means that "prefixItems", "items", "contains", and all in-place applicators MUST be evaluated before this keyword can be evaluated. Authors of extension keywords MUST NOT define an in-place applicator that would need to be evaluated after this keyword.
If the "unevaluatedItems" subschema is applied to any positions within the instance array, it produces an annotation result of boolean true, analogous to the behavior of "items". This annotation affects the behavior of "unevaluatedItems" in parent schemas.
Omitting this keyword has the same assertion behavior as an empty schema.

Source

classes.lisp.

Target Slot

unevaluated-items.

Generic Reader: unevaluated-properties (object)
Package

openapi-generator.

Methods
Reader Method: unevaluated-properties ((schema schema))

The value of "unevaluatedProperties" MUST be a valid JSON Schema.
The behavior of this keyword depends on the annotation results of adjacent keywords that apply to the instance location being validated. Specifically, the annotations from "properties", "patternProperties", and "additionalProperties", which can come from those keywords when they are adjacent to the "unevaluatedProperties" keyword. Those three annotations, as well as "unevaluatedProperties", can also result from any and all adjacent in-place applicator (Section 10.2) keywords. This includes but is not limited to the in-place applicators defined in this document. Validation with "unevaluatedProperties" applies only to the child values of instance names that do not appear in the "properties", "patternProperties", "additionalProperties", or "unevaluatedProperties" annotation results that apply to the instance location being validated.
For all such properties, validation succeeds if the child instance validates against the "unevaluatedProperties" schema.
This means that "properties", "patternProperties", "additionalProperties", and all in-place applicators MUST be evaluated before this keyword can be evaluated. Authors of extension keywords MUST NOT define an in-place applicator that would need to be evaluated after this keyword.
The annotation result of this keyword is the set of instance property names validated by this keyword’s subschema. This annotation affects the behavior of "unevaluatedProperties" in parent schemas.
Omitting this keyword has the same assertion behavior as an empty schema.

Source

classes.lisp.

Target Slot

unevaluated-properties.

Generic Reader: unique-items (object)
Package

openapi-generator.

Methods
Reader Method: unique-items ((schema schema))

The value of this keyword MUST be a boolean. If this keyword has boolean value false, the instance validates successfully. If it has boolean value true, the instance validates successfully if all of its elements are unique. Omitting this keyword has the same behavior as a value of false.

Source

classes.lisp.

Target Slot

unique-items.

Generic Reader: updated (object)
Package

openapi-generator.

Methods
Reader Method: updated ((apis-guru-api-version apis-guru-api-version))

Timestamp when the version was updated

Source

collections.lisp.

Target Slot

updated.

Generic Reader: url (object)
Package

openapi-generator.

Methods
Reader Method: url ((apis-guru-origin apis-guru-origin))

automatically generated reader method

Source

collections.lisp.

Target Slot

url.

Reader Method: url ((apis-guru-url apis-guru-url))

automatically generated reader method

Source

collections.lisp.

Target Slot

url.

Reader Method: url ((external-documentation external-documentation))

The URL for the target documentation. This MUST be in the form of a URL.

Source

classes.lisp.

Target Slot

url.

Reader Method: url ((server server))

A URL to the target host. This URL supports Server Variables and MAY be relative, to indicate that the host location is relative to the location where the OpenAPI document is being served. Variable substitutions will be made when a variable is named in {brackets}.

Source

classes.lisp.

Target Slot

url.

Reader Method: url ((license license))

A URL to the license used for the API. This MUST be in the form of a URL. The url field is mutually exclusive of the identifier field.

Source

classes.lisp.

Target Slot

url.

Reader Method: url ((contact contact))

The URL pointing to the contact information. This MUST be in the form of a URL.

Source

classes.lisp.

Target Slot

url.

Generic Reader: valid (object)
Package

openapi-generator.

Methods
Reader Method: valid ((schema schema))

A boolean value indicating the overall validation success or failure

Source

classes.lisp.

Target Slot

valid.

Generic Reader: value (object)
Package

openapi-generator.

Methods
Reader Method: value ((example example))

Embedded literal example. The value field and externalValue field are mutually exclusive. To represent examples of media types that cannot naturally represented in JSON or YAML, use a string value to contain the example, escaping where necessary.

Source

classes.lisp.

Target Slot

value.

Generic Reader: variables (object)
Package

openapi-generator.

Methods
Reader Method: variables ((server server))

A map between a variable name and its value. The value is used for substitution in the server’s URL template.

Source

classes.lisp.

Target Slot

variables.

Generic Reader: version (object)
Package

openapi-generator.

Methods
Reader Method: version ((info info))

The version of the OpenAPI document (which is distinct from the OpenAPI Specification version or the API implementation version).

Source

classes.lisp.

Target Slot

version.

Generic Reader: versions (object)
Package

openapi-generator.

Methods
Reader Method: versions ((apis-guru-api apis-guru-api))

automatically generated reader method

Source

collections.lisp.

Target Slot

versions.

Generic Reader: vocabulary (object)
Package

openapi-generator.

Methods
Reader Method: vocabulary ((schema schema))

The "$vocabulary" keyword is used in meta-schemas to identify the vocabularies available for use in schemas described by that meta-schema. It is also used to indicate whether each vocabulary is required or optional, in the sense that an implementation MUST understand the required vocabularies in order to successfully process the schema. Together, this information forms a dialect. Any vocabulary that is understood by the implementation MUST be processed in a manner consistent with the semantic definitions contained within the vocabulary. The value of this keyword MUST be an object. The property names in the object MUST be URIs (containing a scheme) and this URI MUST be normalized. Each URI that appears as a property name identifies a specific set of keywords and their semantics. The URI MAY be a URL, but the nature of the retrievable resource is currently undefined, and reserved for future use. Vocabulary authors MAY use the URL of the vocabulary specification, in a human-readable media type such as text/html or text/plain, as the vocabulary URI. Vocabulary documents may be added in forthcoming drafts. For now, identifying the keyword set is deemed sufficient as that, along with meta-schema validation, is how the current "vocabularies" work today. Any future vocabulary document format will be specified as a JSON document, so using text/html or other non-JSON formats in the meantime will not produce any future ambiguity. The values of the object properties MUST be booleans. If the value is true, then implementations that do not recognize the vocabulary MUST refuse to process any schemas that declare this meta-schema with "$schema". If the value is false, implementations that do not recognize the vocabulary SHOULD proceed with processing such schemas. The value has no impact if the implementation understands the vocabulary. Per 6.5, unrecognized keywords SHOULD be treated as annotations. This remains the case for keywords defined by unrecognized vocabularies. It is not currently possible to distinguish between unrecognized keywords that are defined in vocabularies from those that are not part of any vocabulary. The "$vocabulary" keyword SHOULD be used in the root schema of any schema document intended for use as a meta-schema. It MUST NOT appear in subschemas. The "$vocabulary" keyword MUST be ignored in schema documents that are not being processed as a meta-schema. This allows validating a meta-schema M against its own meta-schema M’ without requiring the validator to understand the vocabularies declared by M.

Source

classes.lisp.

Target Slot

vocabulary.

Generic Reader: webhooks (object)
Package

openapi-generator.

Methods
Reader Method: webhooks ((openapi-3.1 openapi-3.1))

The incoming webhooks that MAY be received as part of this API and that the API consumer MAY choose to implement. Closely related to the callbacks feature, this section describes requests initiated other than by an API call, for example by an out of band registration. The key name is a unique string to refer to each webhook, while the (optionally referenced) Path Item Object describes a request that may be initiated by the API provider and the expected responses. An example is available.

Source

classes.lisp.

Target Slot

webhooks.

Generic Reader: wrapped (object)
Package

openapi-generator.

Methods
Reader Method: wrapped ((xml xml))

MAY be used only for an array definition. Signifies whether the array is wrapped (for example, <books><book/><book/></books>) or unwrapped (<book/><book/>). Default value is false. The definition takes effect only when defined alongside type being array (outside the items).

Source

classes.lisp.

Target Slot

wrapped.

Generic Reader: write-only (object)
Package

openapi-generator.

Methods
Reader Method: write-only ((schema schema))

The value of these keywords MUST be a boolean.
When multiple occurrences of these keywords are applicable to a single sub-instance, the resulting behavior SHOULD be as for a true value if any occurrence specifies a true value, and SHOULD be as for a false value otherwise.
If "writeOnly" has a value of boolean true, it indicates that the value is never present when the instance is retrieved from the owning authority. It can be present when sent to the owning authority to update or create the document (or the resource it represents), but it will not be included in any updated or newly created version of the instance. An instance document that is marked as "writeOnly" for the entire document MAY be returned as a blank document of some sort, or MAY produce an error upon retrieval, or have the retrieval request ignored, at the authority’s discretion. For example, "readOnly" would be used to mark a database-generated serial number as read-only, while "writeOnly" would be used to mark a password input field. These keywords can be used to assist in user interface instance generation. In particular, an application MAY choose to use a widget that hides input values as they are typed for write-only fields. Omitting these keywords has the same behavior as values of false.

Source

classes.lisp.

Target Slot

write-only.

Generic Reader: x-origin (object)
Package

openapi-generator.

Methods
Reader Method: x-origin ((apis-guru-info apis-guru-info))

automatically generated reader method

Source

collections.lisp.

Target Slot

x-origin.

Generic Reader: xml (object)
Package

openapi-generator.

Methods
Reader Method: xml ((schema schema))

This MAY be used only on properties schemas. It has no effect on root schemas. Adds additional metadata to describe the XML representation of this property.

XML Modeling
The xml property allows extra definitions when translating the JSON definition to XML. The XML Object contains additional information about the available options.

Source

classes.lisp.

Target Slot

xml.


5.2.6 Classes

Class: apis-guru-api
Package

openapi-generator.

Source

collections.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: added

Timestamp when the API was first added to the directory

Slot: preferred

Recommended version

Readers

preferred.

Writers

This slot is read-only.

Slot: versions
Readers

versions.

Writers

This slot is read-only.

Class: apis-guru-api-version
Package

openapi-generator.

Source

collections.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: added

Timestamp when the version was added

Slot: externaldocs

Copy of ‘externalDocs‘ s…from OpenAPI definition

Slot: info

Copy of ‘info‘ section from OpenAPI definition

Readers

info.

Writers

This slot is read-only.

Slot: swaggerurl

URL to OpenAPI definition in JSON format

Slot: swaggeryamlurl

URL to OpenAPI definition in YAML format

Slot: updated

Timestamp when the version was updated

Readers

updated.

Writers

This slot is read-only.

Slot: openapiver
Class: apis-guru-external-documentation
Package

openapi-generator.

Source

collections.lisp.

Direct superclasses
Direct slots
Slot: updated
Class: apis-guru-info
Package

openapi-generator.

Source

collections.lisp.

Direct superclasses

json-serializable.

Direct methods

x-origin.

Direct slots
Slot: contact
Slot: description
Slot: title
Slot: version
Slot: x-apisguru-categories
Slot: x-origin
Readers

x-origin.

Writers

This slot is read-only.

Slot: x-providername
Class: apis-guru-list
Package

openapi-generator.

Source

collections.lisp.

Direct superclasses

json-serializable.

Direct methods

api-list.

Direct slots
Slot: api-list
Readers

api-list.

Writers

This slot is read-only.

Class: apis-guru-origin
Package

openapi-generator.

Source

collections.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: format
Package

common-lisp.

Readers

apis-guru-origin-format.

Writers

This slot is read-only.

Slot: url
Readers

url.

Writers

This slot is read-only.

Slot: version
Class: apis-guru-url
Package

openapi-generator.

Source

collections.lisp.

Direct superclasses

json-serializable.

Direct methods

url.

Direct slots
Slot: url
Readers

url.

Writers

This slot is read-only.

Class: components

Holds a set of reusable objects for different aspects of the OAS. All objects defined within the components object will have no effect on the API unless they are explicitly referenced from properties outside the components object.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: schemas

An object to hold reusable Schema Objects.

Readers

schemas.

Writers

This slot is read-only.

Slot: responses

An object to hold reusable Response Objects.

Readers

responses.

Writers

This slot is read-only.

Slot: parameters

An object to hold reusable Parameter Objects.

Readers

parameters.

Writers

This slot is read-only.

Slot: examples

An object to hold reusable Example Objects.

Readers

examples.

Writers

This slot is read-only.

Slot: request-bodies

An object to hold reusable Request Body Objects.

Readers

request-bodies.

Writers

This slot is read-only.

Slot: headers

An object to hold reusable Header Objects.

Readers

headers.

Writers

This slot is read-only.

Slot: security-schemes

An object to hold reusable Security Scheme Objects.

Readers

security-schemes.

Writers

This slot is read-only.

An object to hold reusable Link Objects.

Readers

links.

Writers

This slot is read-only.

Slot: callbacks

An object to hold reusable Callback Objects.

Readers

callbacks.

Writers

This slot is read-only.

Slot: path-items

An object to hold reusable Path Item Object.

Readers

path-items.

Writers

This slot is read-only.

Slot: reference
Readers

reference.

Writers

This slot is read-only.

Class: contact

Contact information for the exposed API.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: name

The identifying name of the contact person/organization.

Readers

name.

Writers

This slot is read-only.

Slot: url

The URL pointing to the contact information. This MUST be in the form of a URL.

Readers

url.

Writers

This slot is read-only.

Slot: email

The email address of the contact person/organization. This MUST be in the form of an email address.

Readers

email.

Writers

This slot is read-only.

Class: discriminator

When request bodies or response payloads may be one of a number of different schemas, a discriminator object can be used to aid in serialization, deserialization, and validation. The discriminator is a specific object in a schema which is used to inform the consumer of the document of an alternative schema based on the value associated with it.

When using the discriminator, inline schemas will not be considered.

This object MAY be extended with Specification Extensions.

The discriminator object is legal only when using one of the composite keywords oneOf, anyOf, allOf.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: property-name

The name of the property in the payload that will hold the discriminator value.

Readers

property-name.

Writers

This slot is read-only.

Slot: mapping

An object to hold mappings between payload values and schema names or references.

Readers

mapping.

Writers

This slot is read-only.

Class: encoding

A single encoding definition applied to a single schema property.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: content-type

The Content-Type for encoding a specific property. Default value depends on the property type: for object - application/json; for array – the default is defined based on the inner type; for all other cases the default is application/octet-stream. The value can be a specific media type (e.g. application/json), a wildcard media type (e.g. image/*), or a comma-separated list of the two types.

Readers

content-type.

Writers

This slot is read-only.

Slot: headers

A map allowing additional information to be provided as headers, for example Content-Disposition. Content-Type is described separately and SHALL be ignored in this section. This property SHALL be ignored if the request body media type is not a multipart.

Readers

headers.

Writers

This slot is read-only.

Slot: style

Describes how a specific property value will be serialized depending on its type. See Parameter Object for details on the style property. The behavior follows the same values as query parameters, including default values. This property SHALL be ignored if the request body media type is not application/x-www-form-urlencoded or multipart/form-data. If a value is explicitly defined, then the value of contentType (implicit or explicit) SHALL be ignored.

Readers

style.

Writers

This slot is read-only.

Slot: explode

When this is true, property values of type array or object generate separate parameters for each value of the array, or key-value-pair of the map. For other types of properties this property has no effect. When style is form, the default value is true. For all other styles, the default value is false. This property SHALL be ignored if the request body media type is not application/x-www-form-urlencoded or multipart/form-data. If a value is explicitly defined, then the value of contentType (implicit or explicit) SHALL be ignored.

Readers

explode.

Writers

This slot is read-only.

Slot: allow-reserved

Determines whether the parameter value SHOULD allow reserved characters, as defined by [RFC3986] :/?#[]@!$&’()*+,;= to be included without percent-encoding. The default value is false. This property SHALL be ignored if the request body media type is not application/x-www-form-urlencoded or multipart/form-data. If a value is explicitly defined, then the value of contentType (implicit or explicit) SHALL be ignored.

Readers

allow-reserved.

Writers

This slot is read-only.

Class: example
Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: summary

Short description for the example.

Readers

summary.

Writers

This slot is read-only.

Slot: description

Long description for the example. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: value

Embedded literal example. The value field and externalValue field are mutually exclusive. To represent examples of media types that cannot naturally represented in JSON or YAML, use a string value to contain the example, escaping where necessary.

Readers

value.

Writers

This slot is read-only.

Slot: external-value

A URI that points to the literal example. This provides the capability to reference examples that cannot easily be included in JSON or YAML documents. The value field and externalValue field are mutually exclusive. See the rules for resolving Relative References.

Readers

external-value.

Writers

This slot is read-only.

Slot: reference
Readers

reference.

Writers

This slot is read-only.

Class: external-documentation

Allows referencing an external resource for extended documentation.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct subclasses

apis-guru-external-documentation.

Direct methods
Direct slots
Slot: description

A description of the target documentation. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: url

The URL for the target documentation. This MUST be in the form of a URL.

Readers

url.

Writers

This slot is read-only.

Class: header

The Header Object follows the structure of the Parameter Object with the following changes:
1. name MUST NOT be specified, it is given in the corresponding headers map.
2. in MUST NOT be specified, it is implicitly in header.
3. All traits that are affected by the location MUST be applicable to a location of header (for example, style).

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: description

A brief description of the header. This could contain examples of use. CommonMark syntax MAY be used for rich text representation.

Readers

header.

Writers

This slot is read-only.

Slot: required

Determines whether this header is mandatory.

Readers

required.

Writers

This slot is read-only.

Slot: deprecated

Specifies that a parameter is deprecated and SHOULD be transitioned out of usage. Default value is false.

Readers

deprecated.

Writers

This slot is read-only.

Slot: allow-empty-value

Sets the ability to pass empty-valued parameters. Default value is false. If style is used, and if behavior is n/a (cannot be serialized), the value of allowEmptyValue SHALL be ignored. Use of this property is NOT RECOMMENDED, as it is likely to be removed in a later revision.

Readers

alllow-empty-value.

Writers

This slot is read-only.

Slot: schema

The schema defining the type used for the parameter.

Readers

schema.

Writers

This slot is read-only.

Slot: content

A map containing the representations for the parameter. The key is the media type and the value describes it. The map MUST only contain one entry.

Readers

content.

Writers

This slot is read-only.

Slot: style

Describes how the parameter value will be serialized depending on the type of the parameter value. Default value: simple.

Readers

style.

Writers

This slot is read-only.

Slot: explode

When this is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters this property has no effect. When style is form, the default value is true. For all other styles, the default value is false.

Readers

explode.

Writers

This slot is read-only.

Slot: allow-reserved

Determines whether the parameter value SHOULD allow reserved characters, as defined by [RFC3986] :/?#[]@!$&’()*+,;= to be included without percent-encoding. This property only applies to parameters with an in value of query. The default value is false.

Readers

allow-reserved.

Writers

This slot is read-only.

Slot: example

Example of the parameter’s potential value. The example SHOULD match the specified schema and encoding properties if present. The example field is mutually exclusive of the examples field. Furthermore, if referencing a schema that contains an example, the example value SHALL override the example provided by the schema. To represent examples of media types that cannot naturally be represented in JSON or YAML, a string value can contain the example with escaping where necessary.

Readers

example.

Writers

This slot is read-only.

Slot: examples

Examples of the parameter’s potential value. Each example SHOULD contain a value in the correct format as specified in the parameter encoding. The examples field is mutually exclusive of the example field. Furthermore, if referencing a schema that contains an example, the examples value SHALL override the example provided by the schema.

Readers

examples.

Writers

This slot is read-only.

Slot: reference
Readers

reference.

Writers

This slot is read-only.

Class: info

The object provides metadata about the API. The metadata MAY be used by the clients if needed, and MAY be presented in editing or documentation generation tools for convenience.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: title

The title of the API.

Readers

title.

Writers

This slot is read-only.

Slot: summary

A short summary of the API.

Readers

summary.

Writers

This slot is read-only.

Slot: description

A description of the API. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: terms-of-service

A URL to the Terms of Service for the API. This MUST be in the form of a URL.

Readers

terms-of-service.

Writers

This slot is read-only.

Slot: contact

The contact information for the exposed API.

Readers

contact.

Writers

This slot is read-only.

Slot: license

The license information for the exposed API.

Readers

license.

Writers

This slot is read-only.

Slot: version

The version of the OpenAPI document (which is distinct from the OpenAPI Specification version or the API implementation version).

Readers
Writers

This slot is read-only.

Class: license

License information for the exposed API.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: name

The license name used for the API.

Readers

name.

Writers

This slot is read-only.

Slot: identifier

An SPDX license expression for the API. The identifier field is mutually exclusive of the url field.

Readers

identifier.

Writers

This slot is read-only.

Slot: url

A URL to the license used for the API. This MUST be in the form of a URL. The url field is mutually exclusive of the identifier field.

Readers

url.

Writers

This slot is read-only.

The Link object represents a possible design-time link for a response. The presence of a link does not guarantee the caller’s ability to successfully invoke it, rather it provides a known relationship and traversal mechanism between responses and other operations.

Unlike dynamic links (i.e. links provided in the response payload), the OAS linking mechanism does not require link information in the runtime response.

For computing links, and providing instructions to execute them, a runtime expression is used for accessing values in an operation and using them as parameters while invoking the linked operation.

A linked operation MUST be identified using either an operationRef or operationId. In the case of an operationId, it MUST be unique and resolved in the scope of the OAS document. Because of the potential for name clashes, the operationRef syntax is preferred for OpenAPI documents with external references.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: operation-ref

A relative or absolute URI reference to an OAS operation. This field is mutually exclusive of the operationId field, and MUST point to an Operation Object. Relative operationRef values MAY be used to locate an existing Operation Object in the OpenAPI definition. See the rules for resolving Relative References.

Readers

operation-ref.

Writers

This slot is read-only.

Slot: operation-id

The name of an existing, resolvable OAS operation, as defined with a unique operationId. This field is mutually exclusive of the operationRef field.

Readers

operation-id.

Writers

This slot is read-only.

Slot: parameters

A map representing parameters to pass to an operation as specified with operationId or identified via operationRef. The key is the parameter name to be used, whereas the value can be a constant or an expression to be evaluated and passed to the linked operation. The parameter name can be qualified using the parameter location [{in}.]{name} for operations that use the same parameter name in different locations (e.g. path.id).

Readers

parameters.

Writers

This slot is read-only.

Slot: request-body

A literal value or {expression} to use as a request body when calling the target operation.

Readers

request-body.

Writers

This slot is read-only.

Slot: description

A description of the link. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: server

server object to be used by the target operation.

Readers

server.

Writers

This slot is read-only.

Slot: reference
Readers

reference.

Writers

This slot is read-only.

Class: media-type

Each Media Type Object provides schema and examples for the media type identified by its key.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: schema

The schema defining the content of the request, response, or parameter.

Readers

schema.

Writers

This slot is read-only.

Slot: example

Example of the media type. The example object SHOULD be in the correct format as specified by the media type. The example field is mutually exclusive of the examples field. Furthermore, if referencing a schema which contains an example, the example value SHALL override the example provided by the schema.

Readers

example.

Writers

This slot is read-only.

Slot: examples

Examples of the media type. Each example object SHOULD match the media type and specified schema if present. The examples field is mutually exclusive of the example field. Furthermore, if referencing a schema which contains an example, the examples value SHALL override the example provided by the schema.

Readers

examples.

Writers

This slot is read-only.

Slot: encoding

A map between a property name and its encoding information. The key, being the property name, MUST exist in the schema as a property. The encoding object SHALL only apply to requestBody objects when the media type is multipart or application/x-www-form-urlencoded.

Readers

encoding.

Writers

This slot is read-only.

Class: o-auth-flow

Configuration details for a supported OAuth Flow

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: authorization-url

The authorization URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.

Readers

authorization-url.

Writers

This slot is read-only.

Slot: token-url

The token URL to be used for this flow. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.

Readers

token-url.

Writers

This slot is read-only.

Slot: refresh-url

The URL to be used for obtaining refresh tokens. This MUST be in the form of a URL. The OAuth2 standard requires the use of TLS.

Readers

refresh-url.

Writers

This slot is read-only.

Slot: scopes

The available scopes for the OAuth2 security scheme. A map between the scope name and a short description for it. The map MAY be empty.

Readers

scopes.

Writers

This slot is read-only.

Class: o-auth-flows

Allows configuration of the supported OAuth Flows.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: implicit

Configuration for the OAuth Implicit flow

Readers

implicit.

Writers

This slot is read-only.

Slot: password

Configuration for the OAuth Resource Owner Password flow

Readers

password.

Writers

This slot is read-only.

Slot: client-credentials

Configuration for the OAuth Client Credentials flow. Previously called application in OpenAPI 2.0.

Readers

client-credentials.

Writers

This slot is read-only.

Slot: authorization-code

Configuration for the OAuth Authorization Code flow. Previously called accessCode in OpenAPI 2.0.

Readers

authorization-code.

Writers

This slot is read-only.

Class: openapi

This is the root object of the OpenAPI document.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct subclasses
Direct methods
Direct slots
Slot: openapi

This string MUST be the version number of the OpenAPI Specification that the OpenAPI document uses. The openapi field SHOULD be used by tooling to interpret the OpenAPI document. This is not related to the API info.version string.

Readers

openapi.

Writers

This slot is read-only.

Slot: info

Provides metadata about the API. The metadata MAY be used by tooling as required.

Readers

info.

Writers

This slot is read-only.

Slot: servers

An array of Server Objects, which provide connectivity information to a target server. If the servers property is not provided, or is an empty array, the default value would be a Server Object with a url value of /.

Readers

servers.

Writers

This slot is read-only.

Slot: security

A declaration of which security mechanisms can be used across the API. The list of values includes alternative security requirement objects that can be used. Only one of the security requirement objects need to be satisfied to authorize a request. Individual operations can override this definition. To make security optional, an empty security requirement ({}) can be included in the array.

Slot: paths

The available paths and operations for the API.
Holds the relative paths to the individual endpoints and their operations. The path is appended to the URL from the Server Object in order to construct the full URL. The Paths MAY be empty, due to Access Control List (ACL) constraints.

Readers

paths.

Writers

This slot is read-only.

Slot: tags

A list of tags used by the document with additional metadata. The order of the tags can be used to reflect on their order by the parsing tools. Not all tags that are used by the Operation Object must be declared. The tags that are not declared MAY be organized randomly or based on the tools’ logic. Each tag name in the list MUST be unique.

Readers

tags.

Writers

This slot is read-only.

Slot: externaldocs

Additional external documentation.

Readers

external-documentation.

Writers

This slot is read-only.

Slot: components

An element to hold various schemas for the document.

Readers

components.

Writers

This slot is read-only.

Slot: schema
Readers

schema.

Writers

This slot is read-only.

Class: openapi-3.0
Package

openapi-generator.

Source

classes.lisp.

Direct superclasses
Class: openapi-3.1
Package

openapi-generator.

Source

classes.lisp.

Direct superclasses
Direct methods
Direct slots
Slot: json-schema-dialect

The default value for the $schema keyword within Schema Objects contained within this OAS document. This MUST be in the form of a URI.

Readers

json-schema-dialect.

Writers

This slot is read-only.

Slot: webhooks

The incoming webhooks that MAY be received as part of this API and that the API consumer MAY choose to implement. Closely related to the callbacks feature, this section describes requests initiated other than by an API call, for example by an out of band registration. The key name is a unique string to refer to each webhook, while the (optionally referenced) Path Item Object describes a request that may be initiated by the API provider and the expected responses. An example is available.

Readers

webhooks.

Writers

This slot is read-only.

Class: operation

Describes a single API operation on a path.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: tags

A list of tags for API documentation control. Tags can be used for logical grouping of operations by resources or any other qualifier.

Readers

tags.

Writers

This slot is read-only.

Slot: summary

A short summary of what the operation does.

Readers

summary.

Writers

This slot is read-only.

Slot: description

A verbose explanation of the operation behavior. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: external-documentation

Additional external documentation for this operation.

Readers

external-documentation.

Writers

This slot is read-only.

Slot: operation-id

Unique string used to identify the operation. The id MUST be unique among all operations described in the API. The operationId value is case-sensitive. Tools and libraries MAY use the operationId to uniquely identify an operation, therefore, it is RECOMMENDED to follow common programming naming conventions.

Readers

operation-id.

Writers

This slot is read-only.

Slot: parameters

A list of parameters that are applicable for this operation. If a parameter is already defined at the Path Item, the new definition will override it but can never remove it. The list MUST NOT include duplicated parameters. A unique parameter is defined by a combination of a name and location. The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object’s components/parameters.

Readers

parameters.

Writers

This slot is read-only.

Slot: request-body

The request body applicable for this operation. The requestBody is fully supported in HTTP methods where the HTTP 1.1 specification [RFC7231] has explicitly defined semantics for request bodies. In other cases where the HTTP spec is vague (such as GET, HEAD and DELETE), requestBody is permitted but does not have well-defined semantics and SHOULD be avoided if possible.

Readers

request-body.

Writers

This slot is read-only.

Slot: responses

The list of possible responses as they are returned from executing this operation.

A container for the expected responses of an operation. The container maps a HTTP response code to the expected response.

The documentation is not necessarily expected to cover all possible HTTP response codes because they may not be known in advance. However, documentation is expected to cover a successful operation response and any known errors.

The default MAY be used as a default response object for all HTTP codes that are not covered individually by the Responses Object.

The Responses Object MUST contain at least one response code, and if only one response code is provided it SHOULD be the response for a successful operation call.

Readers

responses.

Writers

This slot is read-only.

Slot: callbacks

A map of possible out-of band callbacks related to the parent operation. The key is a unique identifier for the Callback Object. Each value in the map is a Callback Object that describes a request that may be initiated by the API provider and the expected responses.

Readers

callbacks.

Writers

This slot is read-only.

Slot: deprecated

Declares this operation to be deprecated. Consumers SHOULD refrain from usage of the declared operation. Default value is false.

Readers

deprecated.

Writers

This slot is read-only.

Slot: security

A declaration of which security mechanisms can be used for this operation. The list of values includes alternative security requirement objects that can be used. Only one of the security requirement objects need to be satisfied to authorize a request. To make security optional, an empty security requirement ({}) can be included in the array. This definition overrides any declared top-level security. To remove a top-level security declaration, an empty array can be used.

Readers

security.

Writers

This slot is read-only.

Slot: servers

An alternative server array to service this operation. If an alternative server object is specified at the Path Item Object or Root level, it will be overridden by this value.

Readers

servers.

Writers

This slot is read-only.

Class: parameter

Describes a single operation parameter.
A unique parameter is defined by a combination of a name and location.

Parameter Locations
There are four possible parameter locations specified by the in field:

path - Used together with Path Templating, where the parameter value is actually part of the operation’s URL. This does not include the host or base path of the API. For example, in /items/{itemId}, the path parameter is itemId.
query - Parameters that are appended to the URL. For example, in /items?id=###, the query parameter is id.
header - Custom headers that are expected as part of the request. Note that [RFC7230] states header names are case insensitive.
cookie - Used to pass a specific cookie value to the API.

The rules for serialization of the parameter are specified in one of two ways. For simpler scenarios, a schema and style can describe the structure and syntax of the parameter.

For more complex scenarios, the content property can define the media type and schema of the parameter. A parameter MUST contain either a schema property, or a content property, but not both. When example or examples are provided in conjunction with the schema object, the example MUST follow the prescribed serialization strategy for the parameter.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: name

The name of the parameter. Parameter names are case sensitive.

If in is "path", the name field MUST correspond to a template expression occurring within the path field in the Paths Object. See Path Templating for further information. If in is "header" and the name field is "Accept", "Content-Type" or "Authorization", the parameter definition SHALL be ignored.
For all other cases, the name corresponds to the parameter name used by the in property.

Readers

name.

Writers

This slot is read-only.

Slot: in

The location of the parameter. Possible values are "query", "header", "path" or "cookie".

Readers

in.

Writers

This slot is read-only.

Slot: description

A brief description of the parameter. This could contain examples of use. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: required

Determines whether this parameter is mandatory. If the parameter location is "path", this property is REQUIRED and its value MUST be true. Otherwise, the property MAY be included and its default value is false.

Readers

required.

Writers

This slot is read-only.

Slot: deprecated

Specifies that a parameter is deprecated and SHOULD be transitioned out of usage. Default value is false.

Readers

deprecated.

Writers

This slot is read-only.

Slot: allow-empty-value

Sets the ability to pass empty-valued parameters. This is valid only for query parameters and allows sending a parameter with an empty value. Default value is false. If style is used, and if behavior is n/a (cannot be serialized), the value of allowEmptyValue SHALL be ignored. Use of this property is NOT RECOMMENDED, as it is likely to be removed in a later revision.

Readers

allow-empty-value.

Writers

This slot is read-only.

Slot: style

Describes how the parameter value will be serialized depending on the type of the parameter value. Default values (based on value of in): for query - form; for path - simple; for header - simple; for cookie - form.

Readers

style.

Writers

This slot is read-only.

Slot: explode

When this is true, parameter values of type array or object generate separate parameters for each value of the array or key-value pair of the map. For other types of parameters this property has no effect. When style is form, the default value is true. For all other styles, the default value is false.

Readers

style.

Writers

This slot is read-only.

Slot: allow-reserved

Determines whether the parameter value SHOULD allow reserved characters, as defined by [RFC3986] :/?#[]@!$&’()*+,;= to be included without percent-encoding. This property only applies to parameters with an in value of query. The default value is false.

Readers

allow-reserved.

Writers

This slot is read-only.

Slot: schema

The schema defining the type used for the parameter.

Readers

schema.

Writers

This slot is read-only.

Slot: example

Example of the parameter’s potential value. The example SHOULD match the specified schema and encoding properties if present. The example field is mutually exclusive of the examples field. Furthermore, if referencing a schema that contains an example, the example value SHALL override the example provided by the schema. To represent examples of media types that cannot naturally be represented in JSON or YAML, a string value can contain the example with escaping where necessary.

Readers

example.

Writers

This slot is read-only.

Slot: examples

Examples of the parameter’s potential value. Each example SHOULD contain a value in the correct format as specified in the parameter encoding. The examples field is mutually exclusive of the example field. Furthermore, if referencing a schema that contains an example, the examples value SHALL override the example provided by the schema.

Readers

examples.

Writers

This slot is read-only.

Slot: content

A map containing the representations for the parameter. The key is the media type and the value describes it. The map MUST only contain one entry.

Readers

content.

Writers

This slot is read-only.

Slot: reference
Readers

reference.

Writers

This slot is read-only.

Class: path

Describes the operations available on a single path. A Path Item MAY be empty, due to ACL constraints. The path itself is still exposed to the documentation viewer but they will not know which operations and parameters are available.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: reference

Allows for a referenced definition of this path item. The referenced structure MUST be in the form of a Path Item Object. In case a Path Item Object field appears both in the defined object and the referenced object, the behavior is undefined. See the rules for resolving Relative References.

Readers

reference.

Writers

This slot is read-only.

Slot: summary

An optional, string summary, intended to apply to all operations in this path.

Readers

summary.

Writers

This slot is read-only.

Slot: description

An optional, string description, intended to apply to all operations in this path. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: get

A definition of a GET operation on this path.

Package

common-lisp.

Readers

path-get.

Writers

This slot is read-only.

Slot: head

A definition of a HEAD operation on this path.

Readers

head.

Writers

This slot is read-only.

Slot: options

A definition of a OPTIONS operation on this path.

Readers

options.

Writers

This slot is read-only.

Slot: trace

A definition of a TRACE operation on this path.

Package

common-lisp.

Readers

path-trace.

Writers

This slot is read-only.

Slot: delete

A definition of a DELETE operation on this path.

Package

common-lisp.

Readers

path-delete.

Writers

This slot is read-only.

Slot: put

A definition of a PUT operation on this path.

Readers

put.

Writers

This slot is read-only.

Slot: post

A definition of a POST operation on this path.

Readers

post.

Writers

This slot is read-only.

Slot: patch

A definition of a PATCH operation on this path.

Readers

patch.

Writers

This slot is read-only.

Slot: parameters

A list of parameters that are applicable for all the operations described under this path. These parameters can be overridden at the operation level, but cannot be removed there. The list MUST NOT include duplicated parameters. A unique parameter is defined by a combination of a name and location. The list can use the Reference Object to link to parameters that are defined at the OpenAPI Object’s components/parameters.

Readers

parameters.

Writers

This slot is read-only.

Slot: servers

An alternative server array to service all operations in this path.

Readers

servers.

Writers

This slot is read-only.

Class: path-item-or-reference
Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods

title.

Direct slots
Slot: title
Readers

title.

Writers

This slot is read-only.

Class: reference

A simple object to allow referencing other components in the OpenAPI document, internally and externally.

The $ref string value contains a URI [RFC3986], which identifies the location of the value being referenced.

See the rules for resolving Relative References.

This object cannot be extended with additional properties and any properties added SHALL be ignored.

Note that this restriction on additional properties is a difference between Reference Objects and Schema Objects that contain a $ref keyword.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: reference

The reference identifier. This MUST be in the form of a URI.

Readers

reference.

Writers

This slot is read-only.

Slot: summary

A short summary which by default SHOULD override that of the referenced component. If the referenced object-type does not allow a summary field, then this field has no effect.

Readers

summary.

Writers

This slot is read-only.

Slot: description

A description which by default SHOULD override that of the referenced component. CommonMark syntax MAY be used for rich text representation. If the referenced object-type does not allow a description field, then this field has no effect.

Readers

description.

Writers

This slot is read-only.

Class: request-body

Describes a single request body.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: reference
Readers

reference.

Writers

This slot is read-only.

Slot: description

A brief description of the request body. This could contain examples of use. CommonMark syntax MAY be used for rich text representation.

Slot: required

Determines if the request body is required in the request. Defaults to false.

Slot: content

The content of the request body. The key is a media type or media type range and the value describes it. For requests that match multiple keys, only the most specific key is applicable. e.g. text/plain overrides text/*

Readers

content.

Writers

This slot is read-only.

Class: response

Describes a single response from an API Operation, including design-time, static links to operations based on the response.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: description

A description of the response. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: headers

Maps a header name to its definition. [RFC7230] states header names are case insensitive. If a response header is defined with the name "Content-Type", it SHALL be ignored.

Readers

headers.

Writers

This slot is read-only.

Slot: content

Maps a header name to its definition. [RFC7230] states header names are case insensitive. If a response header is defined with the name "Content-Type", it SHALL be ignored.

Readers

content.

Writers

This slot is read-only.

A map of operations links that can be followed from the response. The key of the map is a short name for the link, following the naming constraints of the names for Component Objects.

Readers

links.

Writers

This slot is read-only.

Slot: reference
Readers

reference.

Writers

This slot is read-only.

Class: schema

The Schema Object allows the definition of input and output data types. These types can be objects, but also primitives and arrays. This object is a superset of the JSON Schema Specification Draft 2020-12.

For more information about the properties, see JSON Schema Core and JSON Schema Validation.

Unless stated otherwise, the property definitions follow those of JSON Schema and do not add any additional semantics. Where JSON Schema indicates that behavior is defined by the application (e.g. for annotations), OAS also defers the definition of semantics to the application consuming the OpenAPI document.

Properties

The OpenAPI Schema Object dialect is defined as requiring the OAS base vocabulary, in addition to the vocabularies as specified in the JSON Schema draft 2020-12 general purpose meta-schema.

The OpenAPI Schema Object dialect for this version of the specification is identified by the URI https://spec.openapis.org/oas/3.1/dialect/base (the “OAS dialect schema id”).

The following properties are taken from the JSON Schema specification but their definitions have been extended by the OAS:

- description - CommonMark syntax MAY be used for rich text representation.
- format - See Data Type Formats for further details. While relying on JSON Schema’s defined formats, the OAS offers a few additional predefined formats.

In addition to the JSON Schema properties comprising the OAS dialect, the Schema Object supports keywords from any other vocabularies, or entirely arbitrary properties.

Composition and Inheritance (Polymorphism)

The OpenAPI Specification allows combining and extending model definitions using the allOf property of JSON Schema, in effect offering model composition. allOf takes an array of object definitions that are validated independently but together compose a single object.

While composition offers model extensibility, it does not imply a hierarchy between the models. To support polymorphism, the OpenAPI Specification adds the discriminator field. When used, the discriminator will be the name of the property that decides which schema definition validates the structure of the model. As such, the discriminator field MUST be a required field. There are two ways to define the value of a discriminator for an inheriting instance.

- Use the schema name.
- Override the schema name by overriding the property with a new value. If a new value exists, this takes precedence over the schema name. As such, inline schema definitions, which do not have a given id, cannot be used in polymorphism.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: schema

Specifying Schema Dialects

It is important for tooling to be able to determine which dialect or meta-schema any given resource wishes to be processed with: JSON Schema Core, JSON Schema Validation, OpenAPI Schema dialect, or some custom meta-schema.

The $schema keyword MAY be present in any root Schema Object, and if present MUST be used to determine which dialect should be used when processing the schema. This allows use of Schema Objects which comply with other drafts of JSON Schema than the default Draft 2020-12 support. Tooling MUST support the OAS dialect schema id, and MAY support additional values of $schema.

To allow use of a different default $schema value for all Schema Objects contained within an OAS document, a jsonSchemaDialect value may be set within the OpenAPI Object. If this default is not set, then the OAS dialect schema id MUST be used for these Schema Objects. The value of $schema within a Schema Object always overrides any default.

When a Schema Object is referenced from an external resource which is not an OAS document (e.g. a bare JSON Schema resource), then the value of the $schema keyword for schemas within that resource MUST follow JSON Schema rules

Readers

schema.

Writers

This slot is read-only.

Slot: vocabulary

The "$vocabulary" keyword is used in meta-schemas to identify the vocabularies available for use in schemas described by that meta-schema. It is also used to indicate whether each vocabulary is required or optional, in the sense that an implementation MUST understand the required vocabularies in order to successfully process the schema. Together, this information forms a dialect. Any vocabulary that is understood by the implementation MUST be processed in a manner consistent with the semantic definitions contained within the vocabulary. The value of this keyword MUST be an object. The property names in the object MUST be URIs (containing a scheme) and this URI MUST be normalized. Each URI that appears as a property name identifies a specific set of keywords and their semantics. The URI MAY be a URL, but the nature of the retrievable resource is currently undefined, and reserved for future use. Vocabulary authors MAY use the URL of the vocabulary specification, in a human-readable media type such as text/html or text/plain, as the vocabulary URI. Vocabulary documents may be added in forthcoming drafts. For now, identifying the keyword set is deemed sufficient as that, along with meta-schema validation, is how the current "vocabularies" work today. Any future vocabulary document format will be specified as a JSON document, so using text/html or other non-JSON formats in the meantime will not produce any future ambiguity. The values of the object properties MUST be booleans. If the value is true, then implementations that do not recognize the vocabulary MUST refuse to process any schemas that declare this meta-schema with "$schema". If the value is false, implementations that do not recognize the vocabulary SHOULD proceed with processing such schemas. The value has no impact if the implementation understands the vocabulary. Per 6.5, unrecognized keywords SHOULD be treated as annotations. This remains the case for keywords defined by unrecognized vocabularies. It is not currently possible to distinguish between unrecognized keywords that are defined in vocabularies from those that are not part of any vocabulary. The "$vocabulary" keyword SHOULD be used in the root schema of any schema document intended for use as a meta-schema. It MUST NOT appear in subschemas. The "$vocabulary" keyword MUST be ignored in schema documents that are not being processed as a meta-schema. This allows validating a meta-schema M against its own meta-schema M’ without requiring the validator to understand the vocabularies declared by M.

Readers

vocabulary.

Writers

This slot is read-only.

Slot: id

The "$id" keyword identifies a schema resource with its canonical [RFC6596] URI. Note that this URI is an identifier and not necessarily a network locator. In the case of a network-addressable URL, a schema need not be downloadable from its canonical URI. If present, the value for this keyword MUST be a string, and MUST represent a valid URI-reference [RFC3986]. This URI-reference SHOULD be normalized, and MUST resolve to an absolute-URI [RFC3986] (without a fragment), or to a URI with an empty fragment. The empty fragment form is NOT RECOMMENDED and is retained only for backwards compatibility, and because the application/schema+json media type defines that a URI with an empty fragment identifies the same resource as the same URI with the fragment removed. However, since this equivalence is not part of the RFC 3986 normalization process [RFC3986], implementers and schema authors cannot rely on generic URI libraries understanding it. Therefore, "$id" MUST NOT contain a non-empty fragment, and SHOULD NOT contain an empty fragment. The absolute-URI form MUST be considered the canonical URI, regardless of the presence or absence of an empty fragment. An empty fragment is currently allowed because older meta-schemas have an empty fragment in their $id (or previously, id). A future draft may outright forbid even empty fragments in "$id". The absolute-URI also serves as the base URI for relative URI-references in keywords within the schema resource, in accordance with RFC 3986 section 5.1.1 [RFC3986] regarding base URIs embedded in content. The presence of "$id" in a subschema indicates that the subschema constitutes a distinct schema resource within a single schema document. Furthermore, in accordance with RFC 3986 section 5.1.2 [RFC3986] regarding encapsulating entities, if an "$id" in a subschema is a relative URI-reference, the base URI for resolving that reference is the URI of the parent schema resource. If no parent schema object explicitly identifies itself as a resource with "$id", the base URI is that of the entire document

Readers

id.

Writers

This slot is read-only.

Slot: anchor

Using JSON Pointer fragments requires knowledge of the structure of the schema. When writing schema documents with the intention to provide re-usable schemas, it may be preferable to use a plain name fragment that is not tied to any particular structural location. This allows a subschema to be relocated without requiring JSON Pointer references to be updated. The "$anchor" and "$dynamicAnchor" keywords are used to specify such fragments. They are identifier keywords that can only be used to create plain name fragments, rather than absolute URIs as seen with "$id". The base URI to which the resulting fragment is appended is the canonical URI of the schema resource containing the "$anchor" or "$dynamicAnchor" in question. As discussed in the previous section, this is either the nearest "$id" in the same or parent schema object, or the base URI for the document as determined according to RFC 3986. If present, the value of this keyword MUST be a string and MUST start with a letter ([A-Za-z]) or underscore ("_"), followed by any number of letters, digits ([0-9]), hyphens ("-"), underscores ("_"), and periods ("."). This matches the US-ASCII part of XML’s NCName production [xml-names]. Note that the anchor string does not include the "#" character, as it is not a URI-reference. An "$anchor": "foo" becomes the fragment "#foo" when used in a URI. See below for full examples. The effect of specifying the same fragment name multiple times within the same resource, using any combination of "$anchor" and/or "$dynamicAnchor", is undefined. Implementations MAY raise an error if such usage is detected.

Readers

anchor.

Writers

This slot is read-only.

Slot: dynamic-anchor

Separately from the usual usage of URIs, "$dynamicAnchor" indicates that the fragment is an extension point when used with the "$dynamicRef" keyword. This low-level, advanced feature makes it easier to extend recursive schemas such as the meta-schemas, without imposing any particular semantics on that extension. See the section on "$dynamicRef" (Section 8.2.3.2) for details. In most cases, the normal fragment behavior both suffices and is more intuitive. Therefore it is RECOMMENDED that "$anchor" be used to create plain name fragments unless there is a clear need for "$dynamicAnchor".

Readers

dynamic-anchor.

Writers

This slot is read-only.

Slot: reference

Direct References with "$ref"

The "$ref" keyword is an applicator that is used to reference a statically identified schema. Its results are the results of the referenced schema. Note that this definition of how the results are determined means that other keywords can appear alongside of "$ref" in the same schema object. The value of the "$ref" keyword MUST be a string which is a URI-Reference. Resolved against the current URI base, it produces the URI of the schema to apply. This resolution is safe to perform on schema load, as the process of evaluating an instance cannot change how the reference resolves.

Readers

referenece.

Writers

This slot is read-only.

Slot: dynamic-ref

The $dynamicRef keyword is an applicator that allows for deferring the full resolution until runtime, at which point it is resolved each time it is encountered while evaluating an instance. Together with "$dynamicAnchor", "$dynamicRef" implements a cooperative extension mechanism that is primarily useful with recursive schemas (schemas that reference themselves). Both the extension point and the runtime-determined extension target are defined with "$dynamicAnchor", and only exhibit runtime dynamic behavior when referenced with "$dynamicRef". The value of the "$dynamicRef" property MUST be a string which is a URI-Reference. Resolved against the current URI base, it produces the URI used as the starting point for runtime resolution. This initial resolution is safe to perform on schema load. If the initially resolved starting point URI includes a fragment that was created by the "$dynamicAnchor" keyword, the initial URI MUST be replaced by the URI (including the fragment) for the outermost schema resource in the dynamic scope (Section 7.1) that defines an identically named fragment with "$dynamicAnchor". Otherwise, its behavior is identical to "$ref", and no runtime resolution is needed.

Readers

dynamic-ref.

Writers

This slot is read-only.

Slot: definitions

Schema Re-Use With "$defs"

The "$defs" keyword reserves a location for schema authors to inline re-usable JSON Schemas into a more general schema. The keyword does not directly affect the validation result.
This keyword’s value MUST be an object. Each member value of this object MUST be a valid JSON Schema. As an example, here is a schema describing an array of positive integers, where the positive integer constraint is a subschema in "$defs":

{
"type": "array",
"items": { "$ref": "#/$defs/positiveInteger" },
"$defs": {
"positiveInteger": {
"type": "integer",
"exclusiveMinimum": 0
}
}
}

Readers

definitions.

Writers

This slot is read-only.

Slot: comment

Comments With "$comment"

This keyword reserves a location for comments from schema authors to readers or maintainers of the schema.
The value of this keyword MUST be a string. Implementations MUST NOT present this string to end users. Tools for editing schemas SHOULD support displaying and editing this keyword. The value of this keyword MAY be used in debug or error output which is intended for developers making use of schemas. Schema vocabularies SHOULD allow "$comment" within any object containing vocabulary keywords. Implementations MAY assume "$comment" is allowed unless the vocabulary specifically forbids it. Vocabularies MUST NOT specify any effect of "$comment" beyond what is described in this specification. Tools that translate other media types or programming languages to and from application/schema+json MAY choose to convert that media type or programming language’s native comments to or from "$comment" values. The behavior of such translation when both native comments and "$comment" properties are present is implementation-dependent. Implementations MAY strip "$comment" values at any point during processing. In particular, this allows for shortening schemas when the size of deployed schemas is a concern. Implementations MUST NOT take any other action based on the presence, absence, or contents of "$comment" properties. In particular, the value of "$comment" MUST NOT be collected as an annotation result.

Readers

comment.

Writers

This slot is read-only.

Slot: discriminator

Adds support for polymorphism. The discriminator is an object name that is used to differentiate between other schemas which may satisfy the payload description. See Composition and Inheritance for more details.

Readers

discriminator.

Writers

This slot is read-only.

Slot: xml

This MAY be used only on properties schemas. It has no effect on root schemas. Adds additional metadata to describe the XML representation of this property.

XML Modeling
The xml property allows extra definitions when translating the JSON definition to XML. The XML Object contains additional information about the available options.

Readers

xml.

Writers

This slot is read-only.

Slot: external-documentation

Additional external documentation for this schema.

Readers

external-documentation.

Writers

This slot is read-only.

Slot: type

The value of this keyword MUST be either a string or an array. If it is an array, elements of the array MUST be strings and MUST be unique.
String values MUST be one of the six primitive types ("null", "boolean", "object", "array", number, or string"), or "integer" which matches any number with a zero fractional part.
If the value of type is a string, then an instance validates successfully if its type matches the type represented by the value of the string. If the value of type is an array, then an instance validates successfully if its type matches any of the types indicated by the strings in the array.

Package

common-lisp.

Readers

schema-type.

Writers

This slot is read-only.

Slot: enum

The value of this keyword MUST be an array. This array SHOULD have at least one element. Elements in the array SHOULD be unique. An instance validates successfully against this keyword if its value is equal to one of the elements in this keyword’s array value. Elements in the array might be of any type, including null.

Readers

enum.

Writers

This slot is read-only.

Slot: const

The value of this keyword MAY be of any type, including null.
Use of this keyword is functionally equivalent to an "enum" (Section 6.1.2) with a single value.
An instance validates successfully against this keyword if its value is equal to the value of the keyword.

Readers

const.

Writers

This slot is read-only.

Slot: multiple-of

The value of "multipleOf" MUST be a number, strictly greater than 0.
A numeric instance is valid only if division by this keyword’s value results in an integer.

Readers

multiple-of.

Writers

This slot is read-only.

Slot: maximum

The value of "maximum" MUST be a number, representing an inclusive upper limit for a numeric instance.
If the instance is a number, then this keyword validates only if the instance is less than or exactly equal to "maximum".

Readers

maximum.

Writers

This slot is read-only.

Slot: exclusive-maximum

The value of "exclusiveMaximum" MUST be a number, representing an exclusive upper limit for a numeric instance. If the instance is a number, then the instance is valid only if it has a value strictly less than (not equal to) "exclusiveMaximum".

Readers

exclusive-maximum.

Writers

This slot is read-only.

Slot: minimum

The value of "minimum" MUST be a number, representing an inclusive lower limit for a numeric instance. If the instance is a number, then this keyword validates only if the instance is greater than or exactly equal to "minimum".

Readers

minimum.

Writers

This slot is read-only.

Slot: exclusive-minimum

The value of "exclusiveMinimum" MUST be a number, representing an exclusive lower limit for a numeric instance. If the instance is a number, then the instance is valid only if it has a value strictly greater than (not equal to) "exclusiveMinimum".

Readers

exclusive-minimum.

Writers

This slot is read-only.

Slot: maximum-length

The value of this keyword MUST be a non-negative integer. A string instance is valid against this keyword if its length is less than, or equal to, the value of this keyword. The length of a string instance is defined as the number of its characters as defined by RFC 8259 [RFC8259].

Readers

maximum-length.

Writers

This slot is read-only.

Slot: minimum-length

The value of this keyword MUST be a non-negative integer. A string instance is valid against this keyword if its length is greater than, or equal to, the value of this keyword. The length of a string instance is defined as the number of its characters as defined by RFC 8259 [RFC8259]. Omitting this keyword has the same behavior as a value of 0.

Readers

minimum-length.

Writers

This slot is read-only.

Slot: pattern

The value of this keyword MUST be a string.
This string SHOULD be a valid regular expression, according to the ECMA-262 regular expression dialect. A string instance is considered valid if the regular expression matches the instance successfully. Recall: regular expressions are not implicitly anchored.

Readers

pattern.

Writers

This slot is read-only.

Slot: maximum-items

The value of this keyword MUST be a non-negative integer. An array instance is valid against "maxItems" if its size is less than, or equal to, the value of this keyword.

Readers

maximum-items.

Writers

This slot is read-only.

Slot: minimum-items

The value of this keyword MUST be a non-negative integer. An array instance is valid against "minItems" if its size is greater than, or equal to, the value of this keyword. Omitting this keyword has the same behavior as a value of 0.

Readers

minimum-items.

Writers

This slot is read-only.

Slot: unique-items

The value of this keyword MUST be a boolean. If this keyword has boolean value false, the instance validates successfully. If it has boolean value true, the instance validates successfully if all of its elements are unique. Omitting this keyword has the same behavior as a value of false.

Readers

unique-items.

Writers

This slot is read-only.

Slot: maximum-contains

The value of this keyword MUST be a non-negative integer.
If "contains" is not present within the same schema object, then this keyword has no effect. An instance array is valid against "maxContains" in two ways, depending on the form of the annotation result of an adjacent "contains" [json-schema] keyword. The first way is if the annotation result is an array and the length of that array is less than or equal to the "maxContains" value. The second way is if the annotation result is a boolean "true" and the instance array length is less than or equal to the "maxContains" value.

Readers

maximum-contains.

Writers

This slot is read-only.

Slot: minimum-contains

The value of this keyword MUST be a non-negative integer.
If "contains" is not present within the same schema object, then this keyword has no effect. An instance array is valid against "minContains" in two ways, depending on the form of the annotation result of an adjacent "contains" [json-schema] keyword. The first way is if the annotation result is an array and the length of that array is greater than or equal to the "minContains" value. The second way is if the annotation result is a boolean "true" and the instance array length is greater than or equal to the "minContains" value. A value of 0 is allowed, but is only useful for setting a range of occurrences from 0 to the value of "maxContains". A value of 0 causes "minContains" and "contains" to always pass validation (but validation can still fail against a "maxContains" keyword). Omitting this keyword has the same behavior as a value of 1.

Readers

minimum-contains.

Writers

This slot is read-only.

Slot: maximum-properties

The value of this keyword MUST be a non-negative integer.
An object instance is valid against "maxProperties" if its number of properties is less than, or equal to, the value of this keyword.

Readers

maximum-properties.

Writers

This slot is read-only.

Slot: minimum-properties

The value of this keyword MUST be a non-negative integer.
An object instance is valid against "minProperties" if its number of properties is greater than, or equal to, the value of this keyword. Omitting this keyword has the same behavior as a value of 0.

Readers

minimum-properties.

Writers

This slot is read-only.

Slot: required

The value of this keyword MUST be an array. Elements of this array, if any, MUST be strings, and MUST be unique.
An object instance is valid against this keyword if every item in the array is the name of a property in the instance. Omitting this keyword has the same behavior as an empty array.

Readers

required.

Writers

This slot is read-only.

Slot: dependend-required

The value of this keyword MUST be an object. Properties in this object, if any, MUST be arrays. Elements in each array, if any, MUST be strings, and MUST be unique.
This keyword specifies properties that are required if a specific other property is present. Their requirement is dependent on the presence of the other property. Validation succeeds if, for each name that appears in both the instance and as a name within this keyword’s value, every item in the corresponding array is also the name of a property in the instance. Omitting this keyword has the same behavior as an empty object.

Readers

dependend-required.

Writers

This slot is read-only.

Slot: content-encoding

If the instance value is a string, this property defines that the string SHOULD be interpreted as encoded binary data and decoded using the encoding named by this property.
Possible values indicating base 16, 32, and 64 encodings with several variations are listed in RFC 4648 [RFC4648]. Additionally, sections 6.7 and 6.8 of RFC 2045 [RFC2045] provide encodings used in MIME. This keyword is derived from MIME’s Content-Transfer-Encoding header, which was designed to map binary data into ASCII characters. It is not related to HTTP’s Content-Encoding header, which is used to encode (e.g. compress or encrypt) the content of HTTP request and responses. As "base64" is defined in both RFCs, the definition from RFC 4648 SHOULD be assumed unless the string is specifically intended for use in a MIME context. Note that all of these encodings result in strings consisting only of 7-bit ASCII characters. Therefore, this keyword has no meaning for strings containing characters outside of that range. If this keyword is absent, but "contentMediaType" is present, this indicates that the encoding is the identity encoding, meaning that no transformation was needed in order to represent the content in a UTF-8 string. The value of this property MUST be a string.

Readers

content-encoding.

Writers

This slot is read-only.

Slot: content-media-type

If the instance is a string, this property indicates the media type of the contents of the string. If "contentEncoding" is present, this property describes the decoded string. The value of this property MUST be a string, which MUST be a media type, as defined by RFC 2046 [RFC2046].

Readers

content-media-type.

Writers

This slot is read-only.

Slot: content-schema

If the instance is a string, and if "contentMediaType" is present, this property contains a schema which describes the structure of the string. This keyword MAY be used with any media type that can be mapped into JSON Schema’s data model. The value of this property MUST be a valid JSON schema. It SHOULD be ignored if "contentMediaType" is not present.

Readers

content-schema.

Writers

This slot is read-only.

Slot: title

Can be used to decorate a user interface with information about the data produced by this user interface. A title will preferably be short.

Readers

title.

Writers

This slot is read-only.

Slot: description

Can be used to decorate a user interface with information about the data produced by this user interface. A description will provide explanation about the purpose of the instance described by this schema.

Readers

description.

Writers

This slot is read-only.

Slot: default

There are no restrictions placed on the value of this keyword. When multiple occurrences of this keyword are applicable to a single sub-instance, implementations SHOULD remove duplicates. This keyword can be used to supply a default JSON value associated with a particular schema. It is RECOMMENDED that a default value be valid against the associated schema.

Readers

default.

Writers

This slot is read-only.

Slot: deprecated

The value of this keyword MUST be a boolean.
When multiple occurrences of this keyword are applicable to a single sub-instance, applications SHOULD consider the instance location to be deprecated if any occurrence specifies a true value. If "deprecated" has a value of boolean true, it indicates that applications SHOULD refrain from usage of the declared property. It MAY mean the property is going to be removed in the future. A root schema containing "deprecated" with a value of true indicates that the entire resource being described MAY be removed in the future. The "deprecated" keyword applies to each instance location to which the schema object containing the keyword successfully applies. This can result in scenarios where every array item or object property is deprecated even though the containing array or object is not. Omitting this keyword has the same behavior as a value of false.

Readers

deprecated.

Writers

This slot is read-only.

Slot: read-only

The value of these keywords MUST be a boolean. When multiple occurrences of these keywords are applicable to a single sub-instance, the resulting behavior SHOULD be as for a true value if any occurrence specifies a true value, and SHOULD be as for a false value otherwise.
If "readOnly" has a value of boolean true, it indicates that the value of the instance is managed exclusively by the owning authority, and attempts by an application to modify the value of this property are expected to be ignored or rejected by that owning authority.
An instance document that is marked as "readOnly" for the entire document MAY be ignored if sent to the owning authority, or MAY result in an error, at the authority’s discretion.
For example, "readOnly" would be used to mark a database-generated serial number as read-only, while "writeOnly" would be used to mark a password input field. These keywords can be used to assist in user interface instance generation. In particular, an application MAY choose to use a widget that hides input values as they are typed for write-only fields. Omitting these keywords has the same behavior as values of false

Readers

read-only.

Writers

This slot is read-only.

Slot: write-only

The value of these keywords MUST be a boolean.
When multiple occurrences of these keywords are applicable to a single sub-instance, the resulting behavior SHOULD be as for a true value if any occurrence specifies a true value, and SHOULD be as for a false value otherwise.
If "writeOnly" has a value of boolean true, it indicates that the value is never present when the instance is retrieved from the owning authority. It can be present when sent to the owning authority to update or create the document (or the resource it represents), but it will not be included in any updated or newly created version of the instance. An instance document that is marked as "writeOnly" for the entire document MAY be returned as a blank document of some sort, or MAY produce an error upon retrieval, or have the retrieval request ignored, at the authority’s discretion. For example, "readOnly" would be used to mark a database-generated serial number as read-only, while "writeOnly" would be used to mark a password input field. These keywords can be used to assist in user interface instance generation. In particular, an application MAY choose to use a widget that hides input values as they are typed for write-only fields. Omitting these keywords has the same behavior as values of false.

Readers

write-only.

Writers

This slot is read-only.

Slot: examples

The value of this keyword MUST be an array. There are no restrictions placed on the values within the array. When multiple occurrences of this keyword are applicable to a single sub-instance, implementations MUST provide a flat array of all values rather than an array of arrays. This keyword can be used to provide sample JSON values associated with a particular schema, for the purpose of illustrating usage. It is RECOMMENDED that these values be valid against the associated schema. Implementations MAY use the value(s) of "default", if present, as an additional example. If "examples" is absent, "default" MAY still be used in this manner.

Readers

examples.

Writers

This slot is read-only.

Slot: all-of

This keyword’s value MUST be a non-empty array. Each item of the array MUST be a valid JSON Schema.
An instance validates successfully against this keyword if it validates successfully against all schemas defined by this keyword’s value.

Readers

all-of.

Writers

This slot is read-only.

Slot: any-of

This keyword’s value MUST be a non-empty array. Each item of the array MUST be a valid JSON Schema.
An instance validates successfully against this keyword if it validates successfully against at least one schema defined by this keyword’s value. Note that when annotations are being collected, all subschemas MUST be examined so that annotations are collected from each subschema that validates successfully.

Readers

any-of.

Writers

This slot is read-only.

Slot: one-of

This keyword’s value MUST be a non-empty array. Each item of the array MUST be a valid JSON Schema.
An instance validates successfully against this keyword if it validates successfully against exactly one schema defined by this keyword’s value.

Readers

one-of.

Writers

This slot is read-only.

Slot: not

This keyword’s value MUST be a valid JSON Schema.
An instance is valid against this keyword if it fails to validate successfully against the schema defined by this keyword.

Package

common-lisp.

Readers

schema-not.

Writers

This slot is read-only.

Slot: if

This keyword’s value MUST be a valid JSON Schema.
This validation outcome of this keyword’s subschema has no direct effect on the overall validation result. Rather, it controls which of the "then" or "else" keywords are evaluated. Instances that successfully validate against this keyword’s subschema MUST also be valid against the subschema value of the "then" keyword, if present.
Instances that fail to validate against this keyword’s subschema MUST also be valid against the subschema value of the "else" keyword, if present.
If annotations (Section 7.7) are being collected, they are collected from this keyword’s subschema in the usual way, including when the keyword is present without either "then" or "else".

Package

common-lisp.

Readers

schema-if.

Writers

This slot is read-only.

Slot: then

This keyword’s value MUST be a valid JSON Schema.
When "if" is present, and the instance successfully validates against its subschema, then validation succeeds against this keyword if the instance also successfully validates against this keyword’s subschema.
This keyword has no effect when "if" is absent, or when the instance fails to validate against its subschema. Implementations MUST NOT evaluate the instance against this keyword, for either validation or annotation collection purposes, in such cases.

Readers

then.

Writers

This slot is read-only.

Slot: else

This keyword’s value MUST be a valid JSON Schema.
When "if" is present, and the instance fails to validate against its subschema, then validation succeeds against this keyword if the instance successfully validates against this keyword’s subschema.
This keyword has no effect when "if" is absent, or when the instance successfully validates against its subschema. Implementations MUST NOT evaluate the instance against this keyword, for either validation or annotation collection purposes, in such cases.

Readers

else.

Writers

This slot is read-only.

Slot: dependent-schemas

This keyword specifies subschemas that are evaluated if the instance is an object and contains a certain property.
This keyword’s value MUST be an object. Each value in the object MUST be a valid JSON Schema.
If the object key is a property in the instance, the entire instance must validate against the subschema. Its use is dependent on the presence of the property. Omitting this keyword has the same behavior as an empty object.

Readers

dependent-schemas.

Writers

This slot is read-only.

Slot: prefix-items

The value of "prefixItems" MUST be a non-empty array of valid JSON Schemas.
Validation succeeds if each element of the instance validates against the schema at the same position, if any. This keyword does not constrain the length of the array. If the array is longer than this keyword’s value, this keyword validates only the prefix of matching length.
This keyword produces an annotation value which is the largest index to which this keyword applied a subschema. The value MAY be a boolean true if a subschema was applied to every index of the instance, such as is produced by the "items" keyword. This annotation affects the behavior of "items" and "unevaluatedItems". Omitting this keyword has the same assertion behavior as an empty array.

Readers

prefix-items.

Writers

This slot is read-only.

Slot: items

The value of "items" MUST be a valid JSON Schema.
This keyword applies its subschema to all instance elements at indexes greater than the length of the "prefixItems" array in the same schema object, as reported by the annotation result of that "prefixItems" keyword. If no such annotation result exists, "items" applies its subschema to all instance array elements. Note that the behavior of "items" without "prefixItems" is identical to that of the schema form of "items" in prior drafts. When "prefixItems" is present, the behavior of "items" is identical to the former "additionalItems" keyword. If the "items" subschema is applied to any positions within the instance array, it produces an annotation result of boolean true, indicating that all remaining array elements have been evaluated against this keyword’s subschema. This annotation affects the behavior of "unevaluatedItems" in the Unevaluated vocabulary.
Omitting this keyword has the same assertion behavior as an empty schema.
Implementations MAY choose to implement or optimize this keyword in another way that produces the same effect, such as by directly checking for the presence and size of a "prefixItems" array. Implementations that do not support annotation collection MUST do so.

Readers

items.

Writers

This slot is read-only.

Slot: contains

The value of this keyword MUST be a valid JSON Schema.
An array instance is valid against "contains" if at least one of its elements is valid against the given schema, except when "minContains" is present and has a value of 0, in which case an array instance MUST be considered valid against the "contains" keyword, even if none of its elements is valid against the given schema.
This keyword produces an annotation value which is an array of the indexes to which this keyword validates successfully when applying its subschema, in ascending order. The value MAY be a boolean "true" if the subschema validates successfully when applied to every index of the instance. The annotation MUST be present if the instance array to which this keyword’s schema applies is empty. This annotation affects the behavior of "unevaluatedItems" in the Unevaluated vocabulary, and MAY also be used to implement the "minContains" and "maxContains" keywords in the Validation vocabulary.
The subschema MUST be applied to every array element even after the first match has been found, in order to collect annotations for use by other keywords. This is to ensure that all possible annotations are collected.

Readers

contains.

Writers

This slot is read-only.

Slot: properties

The value of "properties" MUST be an object.
Each value of this object MUST be a valid JSON Schema.
Validation succeeds if, for each name that appears in both the instance and as a name within this keyword’s value, the child instance for that name successfully validates against the corresponding schema.
The annotation result of this keyword is the set of instance property names matched by this keyword. This annotation affects the behavior of "additionalProperties" (in this vocabulary) and "unevaluatedProperties" in the Unevaluated vocabulary. Omitting this keyword has the same assertion behavior as an empty object.

Readers

properties.

Writers

This slot is read-only.

Slot: pattern-properties

The value of "patternProperties" MUST be an object.
Each property name of this object SHOULD be a valid regular expression, according to the ECMA-262 regular expression dialect. Each property value of this object MUST be a valid JSON Schema.
Validation succeeds if, for each instance name that matches any regular expressions that appear as a property name in this keyword’s value, the child instance for that name successfully validates against each schema that corresponds to a matching regular expression. The annotation result of this keyword is the set of instance property names matched by this keyword. This annotation affects the behavior of "additionalProperties" (in this vocabulary) and "unevaluatedProperties" (in the Unevaluated vocabulary).
Omitting this keyword has the same assertion behavior as an empty object.

Readers

pattern-properties.

Writers

This slot is read-only.

Slot: additional-properties

The value of "additionalProperties" MUST be a valid JSON Schema.
The behavior of this keyword depends on the presence and annotation results of "properties" and "patternProperties" within the same schema object. Validation with "additionalProperties" applies only to the child values of instance names that do not appear in the annotation results of either "properties" or "patternProperties".
For all such properties, validation succeeds if the child instance validates against the "additionalProperties" schema.
The annotation result of this keyword is the set of instance property names validated by this keyword’s subschema. This annotation affects the behavior of "unevaluatedProperties" in the Unevaluated vocabulary.
Omitting this keyword has the same assertion behavior as an empty schema.
Implementations MAY choose to implement or optimize this keyword in another way that produces the same effect, such as by directly checking the names in "properties" and the patterns in "patternProperties" against the instance property set. Implementations that do not support annotation collection MUST do so. In defining this option, it seems there is the potential for ambiguity in the output format. The ambiguity does not affect validation results, but it does affect the resulting output format. The ambiguity allows for multiple valid output results depending on whether annotations are used or a solution that "produces the same effect" as draft-07. It is understood that annotations from failing schemas are dropped.

Readers

additional-properties.

Writers

This slot is read-only.

Slot: property-names

The value of "propertyNames" MUST be a valid JSON Schema.
If the instance is an object, this keyword validates if every property name in the instance validates against the provided schema. Note the property name that the schema is testing will always be a string. Omitting this keyword has the same behavior as an empty schema.

Readers

property-names.

Writers

This slot is read-only.

Slot: unevaluated-items

The value of "unevaluatedItems" MUST be a valid JSON Schema.
The behavior of this keyword depends on the annotation results of adjacent keywords that apply to the instance location being validated. Specifically, the annotations from "prefixItems", "items", and "contains", which can come from those keywords when they are adjacent to the "unevaluatedItems" keyword. Those three annotations, as well as "unevaluatedItems", can also result from any and all adjacent in-place applicator (Section 10.2) keywords. This includes but is not limited to the in-place applicators defined in this document. If no relevant annotations are present, the "unevaluatedItems" subschema MUST be applied to all locations in the array. If a boolean true value is present from any of the relevant annotations, "unevaluatedItems" MUST be ignored. Otherwise, the subschema MUST be applied to any index greater than the largest annotation value for "prefixItems", which does not appear in any annotation value for "contains".
This means that "prefixItems", "items", "contains", and all in-place applicators MUST be evaluated before this keyword can be evaluated. Authors of extension keywords MUST NOT define an in-place applicator that would need to be evaluated after this keyword.
If the "unevaluatedItems" subschema is applied to any positions within the instance array, it produces an annotation result of boolean true, analogous to the behavior of "items". This annotation affects the behavior of "unevaluatedItems" in parent schemas.
Omitting this keyword has the same assertion behavior as an empty schema.

Readers

unevaluated-items.

Writers

This slot is read-only.

Slot: unevaluated-properties

The value of "unevaluatedProperties" MUST be a valid JSON Schema.
The behavior of this keyword depends on the annotation results of adjacent keywords that apply to the instance location being validated. Specifically, the annotations from "properties", "patternProperties", and "additionalProperties", which can come from those keywords when they are adjacent to the "unevaluatedProperties" keyword. Those three annotations, as well as "unevaluatedProperties", can also result from any and all adjacent in-place applicator (Section 10.2) keywords. This includes but is not limited to the in-place applicators defined in this document. Validation with "unevaluatedProperties" applies only to the child values of instance names that do not appear in the "properties", "patternProperties", "additionalProperties", or "unevaluatedProperties" annotation results that apply to the instance location being validated.
For all such properties, validation succeeds if the child instance validates against the "unevaluatedProperties" schema.
This means that "properties", "patternProperties", "additionalProperties", and all in-place applicators MUST be evaluated before this keyword can be evaluated. Authors of extension keywords MUST NOT define an in-place applicator that would need to be evaluated after this keyword.
The annotation result of this keyword is the set of instance property names validated by this keyword’s subschema. This annotation affects the behavior of "unevaluatedProperties" in parent schemas.
Omitting this keyword has the same assertion behavior as an empty schema.

Readers

unevaluated-properties.

Writers

This slot is read-only.

Slot: keyword-location

The relative location of the validating keyword that follows the validation path. The value MUST be expressed as a JSON Pointer, and it MUST include any by-reference applicators such as "$ref" or "$dynamicRef".

/properties/width/$ref/minimum

Note that this pointer may not be resolvable by the normal JSON Pointer process due to the inclusion of these by-reference applicator keywords.

Readers

keyword-location.

Writers

This slot is read-only.

Slot: absolute-keyword-location

The absolute, dereferenced location of the validating keyword. The value MUST be expressed as a full URI using the canonical URI of the relevant schema resource with a JSON Pointer fragment, and it MUST NOT include by-reference applicators such as "$ref" or "$dynamicRef" as non-terminal path components. It MAY end in such keywords if the error or annotation is for that keyword, such as an unresolvable reference. Note that "absolute" here is in the sense of "absolute filesystem path" (meaning the complete location) rather than the "absolute-URI" terminology from RFC 3986 (meaning with scheme but without fragment). Keyword absolute locations will have a fragment in order to identify the keyword.

https://example.com/schemas/common#/$defs/count/minimum

This information MAY be omitted only if either the dynamic scope did not pass over a reference or if the schema does not declare an absolute URI as its "$id".

Readers

absolute-keyword-location.

Writers

This slot is read-only.

Slot: instance-location

The location of the JSON value within the instance being validated. The value MUST be expressed as a JSON Pointer.

Readers

instance-location.

Writers

This slot is read-only.

Slot: valid

A boolean value indicating the overall validation success or failure

Readers

valid.

Writers

This slot is read-only.

Slot: errors

The collection of errors or annotations produced by a failed validation

Readers

errors.

Writers

This slot is read-only.

Slot: annotations

The collection of errors or annotations produced by a successful validation

Readers

annotations.

Writers

This slot is read-only.

Slot: nullable

Marks a slot that can be null.

Readers

nullable.

Writers

This slot is read-only.

Class: security-scheme

Defines a security scheme that can be used by the operations.

Supported schemes are HTTP authentication, an API key (either as a header, a cookie parameter or as a query parameter), mutual TLS (use of a client certificate), OAuth2’s common flows (implicit, password, client credentials and authorization code) as defined in [RFC6749], and OpenID Connect Discovery. Please note that as of 2020, the implicit flow is about to be deprecated by OAuth 2.0 Security Best Current Practice. Recommended for most use case is Authorization Code Grant flow with PKCE.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: type

The type of the security scheme. Valid values are "apiKey", "http", "mutualTLS", "oauth2", "openIdConnect".

Package

common-lisp.

Readers

security-scheme-type.

Writers

This slot is read-only.

Slot: description

A description for security scheme. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: name

The name of the header, query or cookie parameter to be used.

Readers

name.

Writers

This slot is read-only.

Slot: in

The location of the API key. Valid values are "query", "header" or "cookie".

Readers

in.

Writers

This slot is read-only.

Slot: scheme

The name of the HTTP Authorization scheme to be used in the Authorization header as defined in [RFC7235]. The values used SHOULD be registered in the IANA Authentication Scheme registry.

Readers

scheme.

Writers

This slot is read-only.

Slot: bearer-format

A hint to the client to identify how the bearer token is formatted. Bearer tokens are usually generated by an authorization server, so this information is primarily for documentation purposes.

Readers

bearer-format.

Writers

This slot is read-only.

Slot: flows

An object containing configuration information for the flow types supported.

Readers

flows.

Writers

This slot is read-only.

Slot: open-id-connect-url

OpenId Connect URL to discover OAuth2 configuration values. This MUST be in the form of a URL. The OpenID Connect standard requires the use of TLS.

Readers

open-id-connect-url.

Writers

This slot is read-only.

Slot: reference
Readers

reference.

Writers

This slot is read-only.

Class: server

An object representing a Server.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: url

A URL to the target host. This URL supports Server Variables and MAY be relative, to indicate that the host location is relative to the location where the OpenAPI document is being served. Variable substitutions will be made when a variable is named in {brackets}.

Readers

url.

Writers

This slot is read-only.

Slot: description

An optional string describing the host designated by the URL. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: variables

A map between a variable name and its value. The value is used for substitution in the server’s URL template.

Readers

variables.

Writers

This slot is read-only.

Class: server-variable

An object representing a Server Variable for server URL template substitution.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: enum

An enumeration of string values to be used if the substitution options are from a limited set. The array MUST NOT be empty.

Readers

enum.

Writers

This slot is read-only.

Slot: default

The default value to use for substitution, which SHALL be sent if an alternate value is not supplied. Note this behavior is different than the Schema Object’s treatment of default values, because in those cases parameter values are optional. If the enum is defined, the value MUST exist in the enum’s values.

Readers

default.

Writers

This slot is read-only.

Slot: description

An optional description for the server variable. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Class: tag

Adds metadata to a single tag that is used by the Operation Object. It is not mandatory to have a Tag Object per tag defined in the Operation Object instances.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: name

The name of the tag.

Readers

name.

Writers

This slot is read-only.

Slot: description

A description for the tag. CommonMark syntax MAY be used for rich text representation.

Readers

description.

Writers

This slot is read-only.

Slot: external-documentation

Additional external documentation for this tag.

Readers

external-documentation.

Writers

This slot is read-only.

Class: xml

A metadata object that allows for more fine-tuned XML model definitions.

When using arrays, XML element names are not inferred (for singular/plural forms) and the name property SHOULD be used to add that information. See examples for expected behavior.

Package

openapi-generator.

Source

classes.lisp.

Direct superclasses

json-serializable.

Direct methods
Direct slots
Slot: name

Replaces the name of the element/attribute used for the described schema property. When defined within items, it will affect the name of the individual XML elements within the list. When defined alongside type being array (outside the items), it will affect the wrapping element and only if wrapped is true. If wrapped is false, it will be ignored.

Readers

name.

Writers

This slot is read-only.

Slot: namespace

The URI of the namespace definition. This MUST be in the form of an absolute URI.

Readers

namespace.

Writers

This slot is read-only.

Slot: prefix

The prefix to be used for the name.

Readers

prefix.

Writers

This slot is read-only.

Slot: attribute

Declares whether the property definition translates to an attribute instead of an element. Default value is false.

Readers

attribute.

Writers

This slot is read-only.

Slot: wrapped

MAY be used only for an array definition. Signifies whether the array is wrapped (for example, <books><book/><book/></books>) or unwrapped (<book/><book/>). Default value is false. The definition takes effect only when defined alongside type being array (outside the items).

Readers

wrapped.

Writers

This slot is read-only.


5.2.7 Types

Type: integer-string ()
Package

openapi-generator.

Source

util.lisp.

Type: json-array ()
Package

openapi-generator.

Source

util.lisp.

Type: json-false ()
Package

openapi-generator.

Source

util.lisp.

Type: json-null ()
Package

openapi-generator.

Source

util.lisp.

Type: json-number ()
Package

openapi-generator.

Source

util.lisp.

Type: json-object ()
Package

openapi-generator.

Source

util.lisp.

Type: json-string ()
Package

openapi-generator.

Source

util.lisp.

Type: json-true ()
Package

openapi-generator.

Source

util.lisp.


Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   R   S   T   U   V   W   X  
Index Entry  Section

A
absolute-keyword-location: Private generic functions
absolute-keyword-location: Private generic functions
additional-properties: Private generic functions
additional-properties: Private generic functions
all-of: Private generic functions
all-of: Private generic functions
alllow-empty-value: Private generic functions
alllow-empty-value: Private generic functions
allow-empty-value: Private generic functions
allow-empty-value: Private generic functions
allow-reserved: Private generic functions
allow-reserved: Private generic functions
allow-reserved: Private generic functions
allow-reserved: Private generic functions
anchor: Private generic functions
anchor: Private generic functions
annotations: Private generic functions
annotations: Private generic functions
any-of: Private generic functions
any-of: Private generic functions
api-list: Private generic functions
api-list: Private generic functions
apis-guru-origin-format: Private generic functions
apis-guru-origin-format: Private generic functions
apis-guru-url: Private ordinary functions
assure-optional: Private generic functions
assure-optional: Private generic functions
assure-optional: Private generic functions
assure-required: Private generic functions
assure-required: Private generic functions
assure-required: Private generic functions
attribute: Private generic functions
attribute: Private generic functions
authorization-code: Private generic functions
authorization-code: Private generic functions
authorization-url: Private generic functions
authorization-url: Private generic functions

B
bearer-format: Private generic functions
bearer-format: Private generic functions

C
callbacks: Private generic functions
callbacks: Private generic functions
callbacks: Private generic functions
check-api-slots: Private generic functions
check-api-slots: Private generic functions
client-credentials: Private generic functions
client-credentials: Private generic functions
collect-alias-exports: Private generic functions
collect-alias-exports: Private generic functions
collect-alias-exports: Private generic functions
collect-function-names: Private generic functions
collect-function-names: Private generic functions
collect-parameters: Private generic functions
collect-parameters: Private generic functions
collect-path-types: Private generic functions
collect-path-types: Private generic functions
comment: Private generic functions
comment: Private generic functions
components: Private generic functions
components: Private generic functions
concat-strings: Private generic functions
concat-strings: Private generic functions
const: Private generic functions
const: Private generic functions
contact: Private generic functions
contact: Private generic functions
contains: Private generic functions
contains: Private generic functions
content: Private generic functions
content: Private generic functions
content: Private generic functions
content: Private generic functions
content: Private generic functions
content-encoding: Private generic functions
content-encoding: Private generic functions
content-media-type: Private generic functions
content-media-type: Private generic functions
content-schema: Private generic functions
content-schema: Private generic functions
content-type: Private generic functions
content-type: Private generic functions
convert-by-content: Private ordinary functions
convert-by-url: Private ordinary functions
convert-to-openapi-3: Public ordinary functions

D
default: Private generic functions
default: Private generic functions
default: Private generic functions
definitions: Private generic functions
definitions: Private generic functions
dependend-required: Private generic functions
dependend-required: Private generic functions
dependent-schemas: Private generic functions
dependent-schemas: Private generic functions
deprecated: Private generic functions
deprecated: Private generic functions
deprecated: Private generic functions
deprecated: Private generic functions
deprecated: Private generic functions
dereference: Public generic functions
dereference: Public generic functions
dereference: Public generic functions
dereference: Public generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
description: Private generic functions
discriminator: Private generic functions
discriminator: Private generic functions
dynamic-anchor: Private generic functions
dynamic-anchor: Private generic functions
dynamic-ref: Private generic functions
dynamic-ref: Private generic functions

E
else: Private generic functions
else: Private generic functions
email: Private generic functions
email: Private generic functions
encoding: Private generic functions
encoding: Private generic functions
ensure-project-directory: Private generic functions
ensure-project-directory: Private generic functions
enum: Private generic functions
enum: Private generic functions
enum: Private generic functions
errors: Private generic functions
errors: Private generic functions
example: Private generic functions
example: Private generic functions
example: Private generic functions
example: Private generic functions
examples: Private generic functions
examples: Private generic functions
examples: Private generic functions
examples: Private generic functions
examples: Private generic functions
examples: Private generic functions
exclusive-maximum: Private generic functions
exclusive-maximum: Private generic functions
exclusive-minimum: Private generic functions
exclusive-minimum: Private generic functions
expand-slot: Private ordinary functions
explode: Private generic functions
explode: Private generic functions
explode: Private generic functions
external-documentation: Private generic functions
external-documentation: Private generic functions
external-documentation: Private generic functions
external-documentation: Private generic functions
external-documentation: Private generic functions
external-value: Private generic functions
external-value: Private generic functions

F
flows: Private generic functions
flows: Private generic functions
from-file: Private ordinary functions
Function, apis-guru-url: Private ordinary functions
Function, convert-by-content: Private ordinary functions
Function, convert-by-url: Private ordinary functions
Function, convert-to-openapi-3: Public ordinary functions
Function, expand-slot: Private ordinary functions
Function, from-file: Private ordinary functions
Function, gen-alist: Private ordinary functions
Function, get-api-guru-apis: Private ordinary functions
Function, get-apis-guru-list: Private ordinary functions
Function, get-data-file: Private ordinary functions
Function, integer-string-p: Private ordinary functions
Function, json-array-p: Private ordinary functions
Function, json-false-p: Private ordinary functions
Function, json-null-p: Private ordinary functions
Function, json-number-p: Private ordinary functions
Function, json-object-p: Private ordinary functions
Function, json-true-p: Private ordinary functions
Function, make-openapi-client: Public ordinary functions
Function, one-item: Private ordinary functions
Function, remove-empty-values: Private ordinary functions
Function, to-file: Private ordinary functions
Function, uri-p: Private ordinary functions
function-name: Private generic functions
function-name: Private generic functions

G
gen-alist: Private ordinary functions
generate-code: Private generic functions
generate-code: Private generic functions
generate-defpackage: Private generic functions
generate-defpackage: Private generic functions
generate-function: Private generic functions
generate-function: Private generic functions
generate-function-code: Private generic functions
generate-function-code: Private generic functions
generate-parameters: Private generic functions
generate-parameters: Private generic functions
generate-slot-alias: Private generic functions
generate-slot-alias: Private generic functions
generate-slot-alias: Private generic functions
Generic Function, absolute-keyword-location: Private generic functions
Generic Function, additional-properties: Private generic functions
Generic Function, all-of: Private generic functions
Generic Function, alllow-empty-value: Private generic functions
Generic Function, allow-empty-value: Private generic functions
Generic Function, allow-reserved: Private generic functions
Generic Function, anchor: Private generic functions
Generic Function, annotations: Private generic functions
Generic Function, any-of: Private generic functions
Generic Function, api-list: Private generic functions
Generic Function, apis-guru-origin-format: Private generic functions
Generic Function, assure-optional: Private generic functions
Generic Function, assure-required: Private generic functions
Generic Function, attribute: Private generic functions
Generic Function, authorization-code: Private generic functions
Generic Function, authorization-url: Private generic functions
Generic Function, bearer-format: Private generic functions
Generic Function, callbacks: Private generic functions
Generic Function, check-api-slots: Private generic functions
Generic Function, client-credentials: Private generic functions
Generic Function, collect-alias-exports: Private generic functions
Generic Function, collect-function-names: Private generic functions
Generic Function, collect-parameters: Private generic functions
Generic Function, collect-path-types: Private generic functions
Generic Function, comment: Private generic functions
Generic Function, components: Private generic functions
Generic Function, concat-strings: Private generic functions
Generic Function, const: Private generic functions
Generic Function, contact: Private generic functions
Generic Function, contains: Private generic functions
Generic Function, content: Private generic functions
Generic Function, content-encoding: Private generic functions
Generic Function, content-media-type: Private generic functions
Generic Function, content-schema: Private generic functions
Generic Function, content-type: Private generic functions
Generic Function, default: Private generic functions
Generic Function, definitions: Private generic functions
Generic Function, dependend-required: Private generic functions
Generic Function, dependent-schemas: Private generic functions
Generic Function, deprecated: Private generic functions
Generic Function, dereference: Public generic functions
Generic Function, description: Private generic functions
Generic Function, discriminator: Private generic functions
Generic Function, dynamic-anchor: Private generic functions
Generic Function, dynamic-ref: Private generic functions
Generic Function, else: Private generic functions
Generic Function, email: Private generic functions
Generic Function, encoding: Private generic functions
Generic Function, ensure-project-directory: Private generic functions
Generic Function, enum: Private generic functions
Generic Function, errors: Private generic functions
Generic Function, example: Private generic functions
Generic Function, examples: Private generic functions
Generic Function, exclusive-maximum: Private generic functions
Generic Function, exclusive-minimum: Private generic functions
Generic Function, explode: Private generic functions
Generic Function, external-documentation: Private generic functions
Generic Function, external-value: Private generic functions
Generic Function, flows: Private generic functions
Generic Function, function-name: Private generic functions
Generic Function, generate-code: Private generic functions
Generic Function, generate-defpackage: Private generic functions
Generic Function, generate-function: Private generic functions
Generic Function, generate-function-code: Private generic functions
Generic Function, generate-parameters: Private generic functions
Generic Function, generate-slot-alias: Private generic functions
Generic Function, get-description: Private generic functions
Generic Function, get-headers: Private generic functions
Generic Function, get-lambda-list: Private generic functions
Generic Function, get-openapi-version: Private generic functions
Generic Function, get-optional-parameter: Private generic functions
Generic Function, get-parameter-type: Private generic functions
Generic Function, get-path: Private generic functions
Generic Function, get-primary-uri: Private generic functions
Generic Function, get-query: Private generic functions
Generic Function, get-required-parameter: Private generic functions
Generic Function, get-response-type: Private generic functions
Generic Function, get-uri-type: Private generic functions
Generic Function, hash-copy-recursive: Private generic functions
Generic Function, head: Private generic functions
Generic Function, header: Private generic functions
Generic Function, headers: Private generic functions
Generic Function, id: Private generic functions
Generic Function, identifier: Private generic functions
Generic Function, implicit: Private generic functions
Generic Function, in: Private generic functions
Generic Function, info: Private generic functions
Generic Function, instance-location: Private generic functions
Generic Function, intern-param: Private generic functions
Generic Function, items: Private generic functions
Generic Function, json-body-schema: Private generic functions
Generic Function, json-content: Private generic functions
Generic Function, json-schema-dialect: Private generic functions
Generic Function, keyword-location: Private generic functions
Generic Function, license: Private generic functions
Generic Function, links: Private generic functions
Generic Function, list-symbols: Private generic functions
Generic Function, mapping: Private generic functions
Generic Function, maximum: Private generic functions
Generic Function, maximum-contains: Private generic functions
Generic Function, maximum-items: Private generic functions
Generic Function, maximum-length: Private generic functions
Generic Function, maximum-properties: Private generic functions
Generic Function, minimum: Private generic functions
Generic Function, minimum-contains: Private generic functions
Generic Function, minimum-items: Private generic functions
Generic Function, minimum-length: Private generic functions
Generic Function, minimum-properties: Private generic functions
Generic Function, multiple-of: Private generic functions
Generic Function, name: Private generic functions
Generic Function, namespace: Private generic functions
Generic Function, nullable: Private generic functions
Generic Function, object-name-symbols: Private generic functions
Generic Function, one-of: Private generic functions
Generic Function, open-id-connect-url: Private generic functions
Generic Function, openapi: Private generic functions
Generic Function, operation-id: Private generic functions
Generic Function, operation-ref: Private generic functions
Generic Function, options: Private generic functions
Generic Function, parameter-schema-type: Private generic functions
Generic Function, parameters: Private generic functions
Generic Function, parse-apis-guru-id: Private generic functions
Generic Function, parse-directory: Private generic functions
Generic Function, parse-openapi: Public generic functions
Generic Function, parse-string: Private generic functions
Generic Function, parse-url: Private generic functions
Generic Function, password: Private generic functions
Generic Function, patch: Private generic functions
Generic Function, path-delete: Private generic functions
Generic Function, path-get: Private generic functions
Generic Function, path-items: Private generic functions
Generic Function, path-list: Private generic functions
Generic Function, path-list-stringified: Private generic functions
Generic Function, path-trace: Private generic functions
Generic Function, paths: Private generic functions
Generic Function, pattern: Private generic functions
Generic Function, pattern-properties: Private generic functions
Generic Function, post: Private generic functions
Generic Function, preferred: Private generic functions
Generic Function, prefix: Private generic functions
Generic Function, prefix-items: Private generic functions
Generic Function, properties: Private generic functions
Generic Function, property-name: Private generic functions
Generic Function, property-names: Private generic functions
Generic Function, put: Private generic functions
Generic Function, read-only: Private generic functions
Generic Function, reference: Private generic functions
Generic Function, referenece: Private generic functions
Generic Function, refresh-url: Private generic functions
Generic Function, request-bodies: Private generic functions
Generic Function, request-body: Private generic functions
Generic Function, required: Private generic functions
Generic Function, responses: Private generic functions
Generic Function, schema: Private generic functions
Generic Function, schema-if: Private generic functions
Generic Function, schema-not: Private generic functions
Generic Function, schema-type: Private generic functions
Generic Function, schemas: Private generic functions
Generic Function, scheme: Private generic functions
Generic Function, scopes: Private generic functions
Generic Function, security: Private generic functions
Generic Function, security-scheme-type: Private generic functions
Generic Function, security-schemes: Private generic functions
Generic Function, server: Private generic functions
Generic Function, servers: Private generic functions
Generic Function, style: Private generic functions
Generic Function, summary: Private generic functions
Generic Function, tags: Private generic functions
Generic Function, terms-of-service: Private generic functions
Generic Function, then: Private generic functions
Generic Function, title: Private generic functions
Generic Function, token-url: Private generic functions
Generic Function, type-conversion: Private generic functions
Generic Function, unevaluated-items: Private generic functions
Generic Function, unevaluated-properties: Private generic functions
Generic Function, unique-items: Private generic functions
Generic Function, updated: Private generic functions
Generic Function, url: Private generic functions
Generic Function, valid: Private generic functions
Generic Function, value: Private generic functions
Generic Function, variables: Private generic functions
Generic Function, version: Private generic functions
Generic Function, versions: Private generic functions
Generic Function, vocabulary: Private generic functions
Generic Function, webhooks: Private generic functions
Generic Function, wrapped: Private generic functions
Generic Function, write-only: Private generic functions
Generic Function, x-origin: Private generic functions
Generic Function, xml: Private generic functions
get-api-guru-apis: Private ordinary functions
get-apis-guru-list: Private ordinary functions
get-data-file: Private ordinary functions
get-description: Private generic functions
get-description: Private generic functions
get-headers: Private generic functions
get-headers: Private generic functions
get-lambda-list: Private generic functions
get-lambda-list: Private generic functions
get-openapi-version: Private generic functions
get-openapi-version: Private generic functions
get-openapi-version: Private generic functions
get-openapi-version: Private generic functions
get-openapi-version: Private generic functions
get-optional-parameter: Private generic functions
get-optional-parameter: Private generic functions
get-parameter-type: Private generic functions
get-parameter-type: Private generic functions
get-path: Private generic functions
get-path: Private generic functions
get-primary-uri: Private generic functions
get-primary-uri: Private generic functions
get-query: Private generic functions
get-query: Private generic functions
get-required-parameter: Private generic functions
get-required-parameter: Private generic functions
get-response-type: Private generic functions
get-response-type: Private generic functions
get-uri-type: Private generic functions
get-uri-type: Private generic functions

H
hash-copy-recursive: Private generic functions
hash-copy-recursive: Private generic functions
head: Private generic functions
head: Private generic functions
header: Private generic functions
header: Private generic functions
headers: Private generic functions
headers: Private generic functions
headers: Private generic functions
headers: Private generic functions

I
id: Private generic functions
id: Private generic functions
identifier: Private generic functions
identifier: Private generic functions
implicit: Private generic functions
implicit: Private generic functions
in: Private generic functions
in: Private generic functions
in: Private generic functions
info: Private generic functions
info: Private generic functions
info: Private generic functions
instance-location: Private generic functions
instance-location: Private generic functions
integer-string-p: Private ordinary functions
intern-param: Private generic functions
intern-param: Private generic functions
intern-param: Private generic functions
intern-param: Private generic functions
intern-param: Private generic functions
items: Private generic functions
items: Private generic functions

J
json-array-p: Private ordinary functions
json-body-schema: Private generic functions
json-body-schema: Private generic functions
json-class: Private macros
json-content: Private generic functions
json-content: Private generic functions
json-false-p: Private ordinary functions
json-null-p: Private ordinary functions
json-number-p: Private ordinary functions
json-object-p: Private ordinary functions
json-schema-dialect: Private generic functions
json-schema-dialect: Private generic functions
json-true-p: Private ordinary functions

K
keyword-location: Private generic functions
keyword-location: Private generic functions

L
license: Private generic functions
license: Private generic functions
links: Private generic functions
links: Private generic functions
links: Private generic functions
list-symbols: Private generic functions
list-symbols: Private generic functions

M
Macro, json-class: Private macros
make-openapi-client: Public ordinary functions
mapping: Private generic functions
mapping: Private generic functions
maximum: Private generic functions
maximum: Private generic functions
maximum-contains: Private generic functions
maximum-contains: Private generic functions
maximum-items: Private generic functions
maximum-items: Private generic functions
maximum-length: Private generic functions
maximum-length: Private generic functions
maximum-properties: Private generic functions
maximum-properties: Private generic functions
Method, absolute-keyword-location: Private generic functions
Method, additional-properties: Private generic functions
Method, all-of: Private generic functions
Method, alllow-empty-value: Private generic functions
Method, allow-empty-value: Private generic functions
Method, allow-reserved: Private generic functions
Method, allow-reserved: Private generic functions
Method, allow-reserved: Private generic functions
Method, anchor: Private generic functions
Method, annotations: Private generic functions
Method, any-of: Private generic functions
Method, api-list: Private generic functions
Method, apis-guru-origin-format: Private generic functions
Method, assure-optional: Private generic functions
Method, assure-optional: Private generic functions
Method, assure-required: Private generic functions
Method, assure-required: Private generic functions
Method, attribute: Private generic functions
Method, authorization-code: Private generic functions
Method, authorization-url: Private generic functions
Method, bearer-format: Private generic functions
Method, callbacks: Private generic functions
Method, callbacks: Private generic functions
Method, check-api-slots: Private generic functions
Method, client-credentials: Private generic functions
Method, collect-alias-exports: Private generic functions
Method, collect-alias-exports: Private generic functions
Method, collect-function-names: Private generic functions
Method, collect-parameters: Private generic functions
Method, collect-path-types: Private generic functions
Method, comment: Private generic functions
Method, components: Private generic functions
Method, concat-strings: Private generic functions
Method, const: Private generic functions
Method, contact: Private generic functions
Method, contains: Private generic functions
Method, content: Private generic functions
Method, content: Private generic functions
Method, content: Private generic functions
Method, content: Private generic functions
Method, content-encoding: Private generic functions
Method, content-media-type: Private generic functions
Method, content-schema: Private generic functions
Method, content-type: Private generic functions
Method, default: Private generic functions
Method, default: Private generic functions
Method, definitions: Private generic functions
Method, dependend-required: Private generic functions
Method, dependent-schemas: Private generic functions
Method, deprecated: Private generic functions
Method, deprecated: Private generic functions
Method, deprecated: Private generic functions
Method, deprecated: Private generic functions
Method, dereference: Public generic functions
Method, dereference: Public generic functions
Method, dereference: Public generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, description: Private generic functions
Method, discriminator: Private generic functions
Method, dynamic-anchor: Private generic functions
Method, dynamic-ref: Private generic functions
Method, else: Private generic functions
Method, email: Private generic functions
Method, encoding: Private generic functions
Method, ensure-project-directory: Private generic functions
Method, enum: Private generic functions
Method, enum: Private generic functions
Method, errors: Private generic functions
Method, example: Private generic functions
Method, example: Private generic functions
Method, example: Private generic functions
Method, examples: Private generic functions
Method, examples: Private generic functions
Method, examples: Private generic functions
Method, examples: Private generic functions
Method, examples: Private generic functions
Method, exclusive-maximum: Private generic functions
Method, exclusive-minimum: Private generic functions
Method, explode: Private generic functions
Method, explode: Private generic functions
Method, external-documentation: Private generic functions
Method, external-documentation: Private generic functions
Method, external-documentation: Private generic functions
Method, external-documentation: Private generic functions
Method, external-value: Private generic functions
Method, flows: Private generic functions
Method, function-name: Private generic functions
Method, generate-code: Private generic functions
Method, generate-defpackage: Private generic functions
Method, generate-function: Private generic functions
Method, generate-function-code: Private generic functions
Method, generate-parameters: Private generic functions
Method, generate-slot-alias: Private generic functions
Method, generate-slot-alias: Private generic functions
Method, get-description: Private generic functions
Method, get-headers: Private generic functions
Method, get-lambda-list: Private generic functions
Method, get-openapi-version: Private generic functions
Method, get-openapi-version: Private generic functions
Method, get-openapi-version: Private generic functions
Method, get-openapi-version: Private generic functions
Method, get-optional-parameter: Private generic functions
Method, get-parameter-type: Private generic functions
Method, get-path: Private generic functions
Method, get-primary-uri: Private generic functions
Method, get-query: Private generic functions
Method, get-required-parameter: Private generic functions
Method, get-response-type: Private generic functions
Method, get-uri-type: Private generic functions
Method, hash-copy-recursive: Private generic functions
Method, head: Private generic functions
Method, header: Private generic functions
Method, headers: Private generic functions
Method, headers: Private generic functions
Method, headers: Private generic functions
Method, id: Private generic functions
Method, identifier: Private generic functions
Method, implicit: Private generic functions
Method, in: Private generic functions
Method, in: Private generic functions
Method, info: Private generic functions
Method, info: Private generic functions
Method, instance-location: Private generic functions
Method, intern-param: Private generic functions
Method, intern-param: Private generic functions
Method, intern-param: Private generic functions
Method, intern-param: Private generic functions
Method, items: Private generic functions
Method, json-body-schema: Private generic functions
Method, json-content: Private generic functions
Method, json-schema-dialect: Private generic functions
Method, keyword-location: Private generic functions
Method, license: Private generic functions
Method, links: Private generic functions
Method, links: Private generic functions
Method, list-symbols: Private generic functions
Method, mapping: Private generic functions
Method, maximum: Private generic functions
Method, maximum-contains: Private generic functions
Method, maximum-items: Private generic functions
Method, maximum-length: Private generic functions
Method, maximum-properties: Private generic functions
Method, minimum: Private generic functions
Method, minimum-contains: Private generic functions
Method, minimum-items: Private generic functions
Method, minimum-length: Private generic functions
Method, minimum-properties: Private generic functions
Method, multiple-of: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, name: Private generic functions
Method, namespace: Private generic functions
Method, nullable: Private generic functions
Method, object-name-symbols: Private generic functions
Method, one-of: Private generic functions
Method, open-id-connect-url: Private generic functions
Method, openapi: Private generic functions
Method, operation-id: Private generic functions
Method, operation-id: Private generic functions
Method, operation-ref: Private generic functions
Method, options: Private generic functions
Method, parameter-schema-type: Private generic functions
Method, parameters: Private generic functions
Method, parameters: Private generic functions
Method, parameters: Private generic functions
Method, parameters: Private generic functions
Method, parse-apis-guru-id: Private generic functions
Method, parse-directory: Private generic functions
Method, parse-openapi: Public generic functions
Method, parse-string: Private generic functions
Method, parse-url: Private generic functions
Method, parse-url: Private generic functions
Method, password: Private generic functions
Method, patch: Private generic functions
Method, path-delete: Private generic functions
Method, path-get: Private generic functions
Method, path-items: Private generic functions
Method, path-list: Private generic functions
Method, path-list-stringified: Private generic functions
Method, path-trace: Private generic functions
Method, paths: Private generic functions
Method, pattern: Private generic functions
Method, pattern-properties: Private generic functions
Method, post: Private generic functions
Method, preferred: Private generic functions
Method, prefix: Private generic functions
Method, prefix-items: Private generic functions
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, print-object: Public standalone methods
Method, properties: Private generic functions
Method, property-name: Private generic functions
Method, property-names: Private generic functions
Method, put: Private generic functions
Method, read-only: Private generic functions
Method, reference: Private generic functions
Method, reference: Private generic functions
Method, reference: Private generic functions
Method, reference: Private generic functions
Method, reference: Private generic functions
Method, reference: Private generic functions
Method, reference: Private generic functions
Method, reference: Private generic functions
Method, reference: Private generic functions
Method, reference: Private generic functions
Method, referenece: Private generic functions
Method, refresh-url: Private generic functions
Method, request-bodies: Private generic functions
Method, request-body: Private generic functions
Method, request-body: Private generic functions
Method, required: Private generic functions
Method, required: Private generic functions
Method, required: Private generic functions
Method, responses: Private generic functions
Method, responses: Private generic functions
Method, schema: Private generic functions
Method, schema: Private generic functions
Method, schema: Private generic functions
Method, schema: Private generic functions
Method, schema: Private generic functions
Method, schema-if: Private generic functions
Method, schema-not: Private generic functions
Method, schema-type: Private generic functions
Method, schemas: Private generic functions
Method, scheme: Private generic functions
Method, scopes: Private generic functions
Method, security: Private generic functions
Method, security-scheme-type: Private generic functions
Method, security-schemes: Private generic functions
Method, server: Private generic functions
Method, servers: Private generic functions
Method, servers: Private generic functions
Method, servers: Private generic functions
Method, style: Private generic functions
Method, style: Private generic functions
Method, style: Private generic functions
Method, summary: Private generic functions
Method, summary: Private generic functions
Method, summary: Private generic functions
Method, summary: Private generic functions
Method, summary: Private generic functions
Method, tags: Private generic functions
Method, tags: Private generic functions
Method, terms-of-service: Private generic functions
Method, then: Private generic functions
Method, title: Private generic functions
Method, title: Private generic functions
Method, title: Private generic functions
Method, token-url: Private generic functions
Method, type-conversion: Private generic functions
Method, type-conversion: Private generic functions
Method, type-conversion: Private generic functions
Method, unevaluated-items: Private generic functions
Method, unevaluated-properties: Private generic functions
Method, unique-items: Private generic functions
Method, updated: Private generic functions
Method, url: Private generic functions
Method, url: Private generic functions
Method, url: Private generic functions
Method, url: Private generic functions
Method, url: Private generic functions
Method, url: Private generic functions
Method, valid: Private generic functions
Method, value: Private generic functions
Method, variables: Private generic functions
Method, version: Private generic functions
Method, versions: Private generic functions
Method, vocabulary: Private generic functions
Method, webhooks: Private generic functions
Method, wrapped: Private generic functions
Method, write-only: Private generic functions
Method, x-origin: Private generic functions
Method, xml: Private generic functions
minimum: Private generic functions
minimum: Private generic functions
minimum-contains: Private generic functions
minimum-contains: Private generic functions
minimum-items: Private generic functions
minimum-items: Private generic functions
minimum-length: Private generic functions
minimum-length: Private generic functions
minimum-properties: Private generic functions
minimum-properties: Private generic functions
multiple-of: Private generic functions
multiple-of: Private generic functions

N
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
name: Private generic functions
namespace: Private generic functions
namespace: Private generic functions
nullable: Private generic functions
nullable: Private generic functions

O
object-name-symbols: Private generic functions
object-name-symbols: Private generic functions
one-item: Private ordinary functions
one-of: Private generic functions
one-of: Private generic functions
open-id-connect-url: Private generic functions
open-id-connect-url: Private generic functions
openapi: Private generic functions
openapi: Private generic functions
operation-id: Private generic functions
operation-id: Private generic functions
operation-id: Private generic functions
operation-ref: Private generic functions
operation-ref: Private generic functions
options: Private generic functions
options: Private generic functions

P
parameter-schema-type: Private generic functions
parameter-schema-type: Private generic functions
parameters: Private generic functions
parameters: Private generic functions
parameters: Private generic functions
parameters: Private generic functions
parameters: Private generic functions
parse-apis-guru-id: Private generic functions
parse-apis-guru-id: Private generic functions
parse-directory: Private generic functions
parse-directory: Private generic functions
parse-openapi: Public generic functions
parse-openapi: Public generic functions
parse-string: Private generic functions
parse-string: Private generic functions
parse-url: Private generic functions
parse-url: Private generic functions
parse-url: Private generic functions
password: Private generic functions
password: Private generic functions
patch: Private generic functions
patch: Private generic functions
path-delete: Private generic functions
path-delete: Private generic functions
path-get: Private generic functions
path-get: Private generic functions
path-items: Private generic functions
path-items: Private generic functions
path-list: Private generic functions
path-list: Private generic functions
path-list-stringified: Private generic functions
path-list-stringified: Private generic functions
path-trace: Private generic functions
path-trace: Private generic functions
paths: Private generic functions
paths: Private generic functions
pattern: Private generic functions
pattern: Private generic functions
pattern-properties: Private generic functions
pattern-properties: Private generic functions
post: Private generic functions
post: Private generic functions
preferred: Private generic functions
preferred: Private generic functions
prefix: Private generic functions
prefix: Private generic functions
prefix-items: Private generic functions
prefix-items: Private generic functions
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
print-object: Public standalone methods
properties: Private generic functions
properties: Private generic functions
property-name: Private generic functions
property-name: Private generic functions
property-names: Private generic functions
property-names: Private generic functions
put: Private generic functions
put: Private generic functions

R
read-only: Private generic functions
read-only: Private generic functions
reference: Private generic functions
reference: Private generic functions
reference: Private generic functions
reference: Private generic functions
reference: Private generic functions
reference: Private generic functions
reference: Private generic functions
reference: Private generic functions
reference: Private generic functions
reference: Private generic functions
reference: Private generic functions
referenece: Private generic functions
referenece: Private generic functions
refresh-url: Private generic functions
refresh-url: Private generic functions
remove-empty-values: Private ordinary functions
request-bodies: Private generic functions
request-bodies: Private generic functions
request-body: Private generic functions
request-body: Private generic functions
request-body: Private generic functions
required: Private generic functions
required: Private generic functions
required: Private generic functions
required: Private generic functions
responses: Private generic functions
responses: Private generic functions
responses: Private generic functions

S
schema: Private generic functions
schema: Private generic functions
schema: Private generic functions
schema: Private generic functions
schema: Private generic functions
schema: Private generic functions
schema-if: Private generic functions
schema-if: Private generic functions
schema-not: Private generic functions
schema-not: Private generic functions
schema-type: Private generic functions
schema-type: Private generic functions
schemas: Private generic functions
schemas: Private generic functions
scheme: Private generic functions
scheme: Private generic functions
scopes: Private generic functions
scopes: Private generic functions
security: Private generic functions
security: Private generic functions
security-scheme-type: Private generic functions
security-scheme-type: Private generic functions
security-schemes: Private generic functions
security-schemes: Private generic functions
server: Private generic functions
server: Private generic functions
servers: Private generic functions
servers: Private generic functions
servers: Private generic functions
servers: Private generic functions
style: Private generic functions
style: Private generic functions
style: Private generic functions
style: Private generic functions
summary: Private generic functions
summary: Private generic functions
summary: Private generic functions
summary: Private generic functions
summary: Private generic functions
summary: Private generic functions

T
tags: Private generic functions
tags: Private generic functions
tags: Private generic functions
terms-of-service: Private generic functions
terms-of-service: Private generic functions
then: Private generic functions
then: Private generic functions
title: Private generic functions
title: Private generic functions
title: Private generic functions
title: Private generic functions
to-file: Private ordinary functions
token-url: Private generic functions
token-url: Private generic functions
type-conversion: Private generic functions
type-conversion: Private generic functions
type-conversion: Private generic functions
type-conversion: Private generic functions

U
unevaluated-items: Private generic functions
unevaluated-items: Private generic functions
unevaluated-properties: Private generic functions
unevaluated-properties: Private generic functions
unique-items: Private generic functions
unique-items: Private generic functions
updated: Private generic functions
updated: Private generic functions
uri-p: Private ordinary functions
url: Private generic functions
url: Private generic functions
url: Private generic functions
url: Private generic functions
url: Private generic functions
url: Private generic functions
url: Private generic functions

V
valid: Private generic functions
valid: Private generic functions
value: Private generic functions
value: Private generic functions
variables: Private generic functions
variables: Private generic functions
version: Private generic functions
version: Private generic functions
versions: Private generic functions
versions: Private generic functions
vocabulary: Private generic functions
vocabulary: Private generic functions

W
webhooks: Private generic functions
webhooks: Private generic functions
wrapped: Private generic functions
wrapped: Private generic functions
write-only: Private generic functions
write-only: Private generic functions

X
x-origin: Private generic functions
x-origin: Private generic functions
xml: Private generic functions
xml: Private generic functions


A.3 Variables

Jump to:   *  
A   B   C   D   E   F   G   H   I   J   K   L   M   N   O   P   R   S   T   U   V   W   X  
Index Entry  Section

*
*converter-url*: Public special variables
*dereference*: Public special variables

A
absolute-keyword-location: Private classes
added: Private classes
added: Private classes
additional-properties: Private classes
all-of: Private classes
allow-empty-value: Private classes
allow-empty-value: Private classes
allow-reserved: Private classes
allow-reserved: Private classes
allow-reserved: Private classes
anchor: Private classes
annotations: Private classes
any-of: Private classes
api-list: Private classes
apis-guru-apis: Private special variables
attribute: Private classes
authorization-code: Private classes
authorization-url: Private classes

B
bearer-format: Private classes

C
callbacks: Private classes
callbacks: Private classes
client-credentials: Private classes
comment: Private classes
components: Private classes
const: Private classes
Constant, constant-data-directory: Private constants
Constant, constant-projects-directory: Private constants
constant-data-directory: Private constants
constant-projects-directory: Private constants
contact: Private classes
contact: Private classes
contains: Private classes
content: Private classes
content: Private classes
content: Private classes
content: Private classes
content-encoding: Private classes
content-media-type: Private classes
content-schema: Private classes
content-type: Private classes

D
default: Private classes
default: Private classes
definitions: Private classes
delete: Private classes
dependend-required: Private classes
dependent-schemas: Private classes
deprecated: Private classes
deprecated: Private classes
deprecated: Private classes
deprecated: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
description: Private classes
discriminator: Private classes
dynamic-anchor: Private classes
dynamic-ref: Private classes

E
else: Private classes
email: Private classes
encoding: Private classes
enum: Private classes
enum: Private classes
errors: Private classes
example: Private classes
example: Private classes
example: Private classes
examples: Private classes
examples: Private classes
examples: Private classes
examples: Private classes
examples: Private classes
exclusive-maximum: Private classes
exclusive-minimum: Private classes
explode: Private classes
explode: Private classes
explode: Private classes
external-documentation: Private classes
external-documentation: Private classes
external-documentation: Private classes
external-value: Private classes
externaldocs: Private classes
externaldocs: Private classes

F
flows: Private classes
format: Private classes

G
get: Private classes

H
head: Private classes
headers: Private classes
headers: Private classes
headers: Private classes

I
id: Private classes
identifier: Private classes
if: Private classes
implicit: Private classes
in: Private classes
in: Private classes
info: Private classes
info: Private classes
instance-location: Private classes
items: Private classes

J
json-schema-dialect: Private classes

K
keyword-location: Private classes

L
license: Private classes
links: Private classes
links: Private classes

M
mapping: Private classes
maximum: Private classes
maximum-contains: Private classes
maximum-items: Private classes
maximum-length: Private classes
maximum-properties: Private classes
minimum: Private classes
minimum-contains: Private classes
minimum-items: Private classes
minimum-length: Private classes
minimum-properties: Private classes
multiple-of: Private classes

N
name: Private classes
name: Private classes
name: Private classes
name: Private classes
name: Private classes
name: Private classes
namespace: Private classes
not: Private classes
nullable: Private classes

O
one-of: Private classes
open-id-connect-url: Private classes
openapi: Private classes
openapiver: Private classes
operation-id: Private classes
operation-id: Private classes
operation-ref: Private classes
options: Private classes

P
parameters: Private classes
parameters: Private classes
parameters: Private classes
parameters: Private classes
password: Private classes
patch: Private classes
path-items: Private classes
paths: Private classes
pattern: Private classes
pattern-properties: Private classes
post: Private classes
preferred: Private classes
prefix: Private classes
prefix-items: Private classes
properties: Private classes
property-name: Private classes
property-names: Private classes
put: Private classes

R
read-only: Private classes
reference: Private classes
reference: Private classes
reference: Private classes
reference: Private classes
reference: Private classes
reference: Private classes
reference: Private classes
reference: Private classes
reference: Private classes
reference: Private classes
reference: Private classes
refresh-url: Private classes
request-bodies: Private classes
request-body: Private classes
request-body: Private classes
required: Private classes
required: Private classes
required: Private classes
required: Private classes
responses: Private classes
responses: Private classes

S
schema: Private classes
schema: Private classes
schema: Private classes
schema: Private classes
schema: Private classes
schemas: Private classes
scheme: Private classes
scopes: Private classes
security: Private classes
security: Private classes
security-schemes: Private classes
server: Private classes
servers: Private classes
servers: Private classes
servers: Private classes
Slot, absolute-keyword-location: Private classes
Slot, added: Private classes
Slot, added: Private classes
Slot, additional-properties: Private classes
Slot, all-of: Private classes
Slot, allow-empty-value: Private classes
Slot, allow-empty-value: Private classes
Slot, allow-reserved: Private classes
Slot, allow-reserved: Private classes
Slot, allow-reserved: Private classes
Slot, anchor: Private classes
Slot, annotations: Private classes
Slot, any-of: Private classes
Slot, api-list: Private classes
Slot, attribute: Private classes
Slot, authorization-code: Private classes
Slot, authorization-url: Private classes
Slot, bearer-format: Private classes
Slot, callbacks: Private classes
Slot, callbacks: Private classes
Slot, client-credentials: Private classes
Slot, comment: Private classes
Slot, components: Private classes
Slot, const: Private classes
Slot, contact: Private classes
Slot, contact: Private classes
Slot, contains: Private classes
Slot, content: Private classes
Slot, content: Private classes
Slot, content: Private classes
Slot, content: Private classes
Slot, content-encoding: Private classes
Slot, content-media-type: Private classes
Slot, content-schema: Private classes
Slot, content-type: Private classes
Slot, default: Private classes
Slot, default: Private classes
Slot, definitions: Private classes
Slot, delete: Private classes
Slot, dependend-required: Private classes
Slot, dependent-schemas: Private classes
Slot, deprecated: Private classes
Slot, deprecated: Private classes
Slot, deprecated: Private classes
Slot, deprecated: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, description: Private classes
Slot, discriminator: Private classes
Slot, dynamic-anchor: Private classes
Slot, dynamic-ref: Private classes
Slot, else: Private classes
Slot, email: Private classes
Slot, encoding: Private classes
Slot, enum: Private classes
Slot, enum: Private classes
Slot, errors: Private classes
Slot, example: Private classes
Slot, example: Private classes
Slot, example: Private classes
Slot, examples: Private classes
Slot, examples: Private classes
Slot, examples: Private classes
Slot, examples: Private classes
Slot, examples: Private classes
Slot, exclusive-maximum: Private classes
Slot, exclusive-minimum: Private classes
Slot, explode: Private classes
Slot, explode: Private classes
Slot, explode: Private classes
Slot, external-documentation: Private classes
Slot, external-documentation: Private classes
Slot, external-documentation: Private classes
Slot, external-value: Private classes
Slot, externaldocs: Private classes
Slot, externaldocs: Private classes
Slot, flows: Private classes
Slot, format: Private classes
Slot, get: Private classes
Slot, head: Private classes
Slot, headers: Private classes
Slot, headers: Private classes
Slot, headers: Private classes
Slot, id: Private classes
Slot, identifier: Private classes
Slot, if: Private classes
Slot, implicit: Private classes
Slot, in: Private classes
Slot, in: Private classes
Slot, info: Private classes
Slot, info: Private classes
Slot, instance-location: Private classes
Slot, items: Private classes
Slot, json-schema-dialect: Private classes
Slot, keyword-location: Private classes
Slot, license: Private classes
Slot, links: Private classes
Slot, links: Private classes
Slot, mapping: Private classes
Slot, maximum: Private classes
Slot, maximum-contains: Private classes
Slot, maximum-items: Private classes
Slot, maximum-length: Private classes
Slot, maximum-properties: Private classes
Slot, minimum: Private classes
Slot, minimum-contains: Private classes
Slot, minimum-items: Private classes
Slot, minimum-length: Private classes
Slot, minimum-properties: Private classes
Slot, multiple-of: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, name: Private classes
Slot, namespace: Private classes
Slot, not: Private classes
Slot, nullable: Private classes
Slot, one-of: Private classes
Slot, open-id-connect-url: Private classes
Slot, openapi: Private classes
Slot, openapiver: Private classes
Slot, operation-id: Private classes
Slot, operation-id: Private classes
Slot, operation-ref: Private classes
Slot, options: Private classes
Slot, parameters: Private classes
Slot, parameters: Private classes
Slot, parameters: Private classes
Slot, parameters: Private classes
Slot, password: Private classes
Slot, patch: Private classes
Slot, path-items: Private classes
Slot, paths: Private classes
Slot, pattern: Private classes
Slot, pattern-properties: Private classes
Slot, post: Private classes
Slot, preferred: Private classes
Slot, prefix: Private classes
Slot, prefix-items: Private classes
Slot, properties: Private classes
Slot, property-name: Private classes
Slot, property-names: Private classes
Slot, put: Private classes
Slot, read-only: Private classes
Slot, reference: Private classes
Slot, reference: Private classes
Slot, reference: Private classes
Slot, reference: Private classes
Slot, reference: Private classes
Slot, reference: Private classes
Slot, reference: Private classes
Slot, reference: Private classes
Slot, reference: Private classes
Slot, reference: Private classes
Slot, reference: Private classes
Slot, refresh-url: Private classes
Slot, request-bodies: Private classes
Slot, request-body: Private classes
Slot, request-body: Private classes
Slot, required: Private classes
Slot, required: Private classes
Slot, required: Private classes
Slot, required: Private classes
Slot, responses: Private classes
Slot, responses: Private classes
Slot, schema: Private classes
Slot, schema: Private classes
Slot, schema: Private classes
Slot, schema: Private classes
Slot, schema: Private classes
Slot, schemas: Private classes
Slot, scheme: Private classes
Slot, scopes: Private classes
Slot, security: Private classes
Slot, security: Private classes
Slot, security-schemes: Private classes
Slot, server: Private classes
Slot, servers: Private classes
Slot, servers: Private classes
Slot, servers: Private classes
Slot, style: Private classes
Slot, style: Private classes
Slot, style: Private classes
Slot, summary: Private classes
Slot, summary: Private classes
Slot, summary: Private classes
Slot, summary: Private classes
Slot, summary: Private classes
Slot, swaggerurl: Private classes
Slot, swaggeryamlurl: Private classes
Slot, tags: Private classes
Slot, tags: Private classes
Slot, terms-of-service: Private classes
Slot, then: Private classes
Slot, title: Private classes
Slot, title: Private classes
Slot, title: Private classes
Slot, title: Private classes
Slot, token-url: Private classes
Slot, trace: Private classes
Slot, type: Private classes
Slot, type: Private classes
Slot, unevaluated-items: Private classes
Slot, unevaluated-properties: Private classes
Slot, unique-items: Private classes
Slot, updated: Private classes
Slot, updated: Private classes
Slot, url: Private classes
Slot, url: Private classes
Slot, url: Private classes
Slot, url: Private classes
Slot, url: Private classes
Slot, url: Private classes
Slot, valid: Private classes
Slot, value: Private classes
Slot, variables: Private classes
Slot, version: Private classes
Slot, version: Private classes
Slot, version: Private classes
Slot, versions: Private classes
Slot, vocabulary: Private classes
Slot, webhooks: Private classes
Slot, wrapped: Private classes
Slot, write-only: Private classes
Slot, x-apisguru-categories: Private classes
Slot, x-logo: Private classes
Slot, x-origin: Private classes
Slot, x-providername: Private classes
Slot, xml: Private classes
Special Variable, *converter-url*: Public special variables
Special Variable, *dereference*: Public special variables
Special Variable, apis-guru-apis: Private special variables
style: Private classes
style: Private classes
style: Private classes
summary: Private classes
summary: Private classes
summary: Private classes
summary: Private classes
summary: Private classes
swaggerurl: Private classes
swaggeryamlurl: Private classes

T
tags: Private classes
tags: Private classes
terms-of-service: Private classes
then: Private classes
title: Private classes
title: Private classes
title: Private classes
title: Private classes
token-url: Private classes
trace: Private classes
type: Private classes
type: Private classes

U
unevaluated-items: Private classes
unevaluated-properties: Private classes
unique-items: Private classes
updated: Private classes
updated: Private classes
url: Private classes
url: Private classes
url: Private classes
url: Private classes
url: Private classes
url: Private classes

V
valid: Private classes
value: Private classes
variables: Private classes
version: Private classes
version: Private classes
version: Private classes
versions: Private classes
vocabulary: Private classes

W
webhooks: Private classes
wrapped: Private classes
write-only: Private classes

X
x-apisguru-categories: Private classes
x-logo: Private classes
x-origin: Private classes
x-providername: Private classes
xml: Private classes


A.4 Data types

Jump to:   A   C   D   E   F   G   H   I   J   L   M   O   P   R   S   T   U   X  
Index Entry  Section

A
apis-guru-api: Private classes
apis-guru-api-version: Private classes
apis-guru-external-documentation: Private classes
apis-guru-info: Private classes
apis-guru-list: Private classes
apis-guru-origin: Private classes
apis-guru-url: Private classes

C
Class, apis-guru-api: Private classes
Class, apis-guru-api-version: Private classes
Class, apis-guru-external-documentation: Private classes
Class, apis-guru-info: Private classes
Class, apis-guru-list: Private classes
Class, apis-guru-origin: Private classes
Class, apis-guru-url: Private classes
Class, components: Private classes
Class, contact: Private classes
Class, discriminator: Private classes
Class, encoding: Private classes
Class, example: Private classes
Class, external-documentation: Private classes
Class, header: Private classes
Class, info: Private classes
Class, license: Private classes
Class, link: Private classes
Class, media-type: Private classes
Class, o-auth-flow: Private classes
Class, o-auth-flows: Private classes
Class, openapi: Private classes
Class, openapi-3.0: Private classes
Class, openapi-3.1: Private classes
Class, operation: Private classes
Class, parameter: Private classes
Class, path: Private classes
Class, path-item-or-reference: Private classes
Class, reference: Private classes
Class, request-body: Private classes
Class, response: Private classes
Class, schema: Private classes
Class, security-scheme: Private classes
Class, server: Private classes
Class, server-variable: Private classes
Class, tag: Private classes
Class, xml: Private classes
classes.lisp: The openapi-generator/classes․lisp file
collections.lisp: The openapi-generator/collections․lisp file
components: Private classes
contact: Private classes
convert.lisp: The openapi-generator/convert․lisp file

D
discriminator: Private classes

E
encoding: Private classes
example: Private classes
external-documentation: Private classes

F
File, classes.lisp: The openapi-generator/classes․lisp file
File, collections.lisp: The openapi-generator/collections․lisp file
File, convert.lisp: The openapi-generator/convert․lisp file
File, function-generation.lisp: The openapi-generator/function-generation․lisp file
File, globals.lisp: The openapi-generator/globals․lisp file
File, json-mop.lisp: The openapi-generator/json-mop․lisp file
File, openapi-generator.asd: The openapi-generator/openapi-generator․asd file
File, openapi-generator.lisp: The openapi-generator/openapi-generator․lisp file
File, package.lisp: The openapi-generator/package․lisp file
File, parser.lisp: The openapi-generator/parser․lisp file
File, util.lisp: The openapi-generator/util․lisp file
function-generation.lisp: The openapi-generator/function-generation․lisp file

G
globals.lisp: The openapi-generator/globals․lisp file

H
header: Private classes

I
info: Private classes
integer-string: Private types

J
json-array: Private types
json-false: Private types
json-mop.lisp: The openapi-generator/json-mop․lisp file
json-null: Private types
json-number: Private types
json-object: Private types
json-string: Private types
json-true: Private types

L
license: Private classes
link: Private classes

M
media-type: Private classes

O
o-auth-flow: Private classes
o-auth-flows: Private classes
openapi: Private classes
openapi-3.0: Private classes
openapi-3.1: Private classes
openapi-generator: The openapi-generator system
openapi-generator: The openapi-generator package
openapi-generator.asd: The openapi-generator/openapi-generator․asd file
openapi-generator.lisp: The openapi-generator/openapi-generator․lisp file
operation: Private classes

P
Package, openapi-generator: The openapi-generator package
package.lisp: The openapi-generator/package․lisp file
parameter: Private classes
parser.lisp: The openapi-generator/parser․lisp file
path: Private classes
path-item-or-reference: Private classes

R
reference: Private classes
request-body: Private classes
response: Private classes

S
schema: Private classes
security-scheme: Private classes
server: Private classes
server-variable: Private classes
System, openapi-generator: The openapi-generator system

T
tag: Private classes
Type, integer-string: Private types
Type, json-array: Private types
Type, json-false: Private types
Type, json-null: Private types
Type, json-number: Private types
Type, json-object: Private types
Type, json-string: Private types
Type, json-true: Private types

U
util.lisp: The openapi-generator/util․lisp file

X
xml: Private classes