-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHeaderRepresentable.swift
More file actions
58 lines (52 loc) · 1.49 KB
/
HeaderRepresentable.swift
File metadata and controls
58 lines (52 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
//
// HeaderRepresentable.swift
// feather-openapi
//
// Created by Tibor Bödecs on 2026. 01. 21.
//
import OpenAPIKit30
/// Describes an OpenAPI header with defaults.
public protocol HeaderRepresentable:
OpenAPIHeaderRepresentable,
Identifiable,
DescriptionProperty,
RequiredProperty,
DeprecatedProperty,
VendorExtensionsProperty,
// reference
ReferencedSchemaMapRepresentable
{
/// The schema describing the header value.
var schema: OpenAPISchemaRepresentable { get }
}
extension HeaderRepresentable {
/// Creates a reference wrapper for this header.
/// - Returns: A header reference.
public func reference() -> HeaderReference<Self> {
.init(self)
}
/// Builds an OpenAPI header object or reference.
/// - Returns: The OpenAPI header representation.
public func openAPIHeader() -> Either<
JSONReference<OpenAPI.Header>, OpenAPI.Header
> {
.init(
.init(
schema: schema.openAPISchema(),
description: description,
required: required,
deprecated: deprecated,
vendorExtensions: vendorExtensions
)
)
}
/// Referenced schemas used by the header.
public var referencedSchemaMap:
OrderedDictionary<SchemaID, OpenAPISchemaRepresentable>
{
guard let schema = schema as? SchemaRepresentable else {
return [:]
}
return schema.allReferencedSchemaMap()
}
}