Struct jsona_openapi::Spec [−][src]
pub struct Spec { pub openapi: String, pub info: Info, pub servers: Option<Vec<Server, Global>>, pub security: Option<Vec<IndexMap<String, Vec<String, Global>, RandomState>, Global>>, pub tags: Option<Vec<Tag, Global>>, pub paths: IndexMap<String, PathItem, RandomState>, pub components: Option<Components>, pub external_docs: Option<ExternalDoc>, }
top level document
Fields
openapi: String
This string MUST be the semantic version number
of the
OpenAPI Specification version
that the OpenAPI document uses. The openapi
field SHOULD be used by tooling
specifications and clients to interpret the OpenAPI document. This is not related to
the API
info.version
string.
info: Info
Provides metadata about the API. The metadata MAY be used by tooling as required.
servers: Option<Vec<Server, Global>>
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 /
.
security: Option<Vec<IndexMap<String, Vec<String, Global>, RandomState>, Global>>
A list of tags used by the specification 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.
paths: IndexMap<String, PathItem, RandomState>
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
ACL constraints.
components: Option<Components>
An element to hold various schemas for the specification.
external_docs: Option<ExternalDoc>
Additional external documentation.
Trait Implementations
impl<'de> Deserialize<'de> for Spec
[src]
impl<'de> Deserialize<'de> for Spec
[src]pub fn deserialize<__D>(
__deserializer: __D
) -> Result<Spec, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
[src]
__deserializer: __D
) -> Result<Spec, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
impl Serialize for Spec
[src]
impl Serialize for Spec
[src]pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
[src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl StructuralPartialEq for Spec
[src]
impl StructuralPartialEq for Spec
[src]Auto Trait Implementations
impl RefUnwindSafe for Spec
impl RefUnwindSafe for Spec
impl UnwindSafe for Spec
impl UnwindSafe for Spec
Blanket Implementations
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>,
[src]