The Swift Package Index logo.Swift Package Index

Has it really been five years since Swift Package Index launched? Read our anniversary blog post!

Build Information

Successful build of OpenAPIKit, reference 4.0.1 (eae732), with Swift 6.2 (beta) for Linux on 11 Sep 2025 06:41:08 UTC.

Swift 6 data race errors: 0

Build Command

bash -c docker run --pull=always --rm -v "checkouts-4609320-1":/host -w "$PWD" -e JAVA_HOME="/root/.sdkman/candidates/java/current" -e SPI_BUILD="1" -e SPI_PROCESSING="1" registry.gitlab.com/finestructure/spi-images:basic-6.2-latest swift build --triple x86_64-unknown-linux-gnu 2>&1

Build Log

 8 | import OpenAPIKitCore
 9 |
10 | extension URLTemplate: Validatable {}
   | |- warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:13:49: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |             for (idx, elem) in zip(self.indices, self) {
12 |                 group.addTask {
13 |                     return try await (idx, elem.externallyDereferenced(with: loader))
   |                                                 `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |                 }
15 |             }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:9:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 7 | extension Array where Element: ExternallyDereferenceable & Sendable {
 8 |
 9 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 |         try await withThrowingTaskGroup(of: (Int, (Element, OpenAPI.Components, [Loader.Message])).self) { group in
11 |             for (idx, elem) in zip(self.indices, self) {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:14:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
12 |           for (key, value) in self {
13 |               group.addTask {
14 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
15 |                   return (key, newRef, components, messages)
16 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:10:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 8 | extension Dictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
 9 |
10 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
12 |           for (key, value) in self {
[60/182] Compiling OpenAPIKit30 Operation.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/URLTemplate+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension URLTemplate: Validatable {}
   | |- warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:13:49: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |             for (idx, elem) in zip(self.indices, self) {
12 |                 group.addTask {
13 |                     return try await (idx, elem.externallyDereferenced(with: loader))
   |                                                 `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |                 }
15 |             }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:9:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 7 | extension Array where Element: ExternallyDereferenceable & Sendable {
 8 |
 9 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 |         try await withThrowingTaskGroup(of: (Int, (Element, OpenAPI.Components, [Loader.Message])).self) { group in
11 |             for (idx, elem) in zip(self.indices, self) {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:14:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
12 |           for (key, value) in self {
13 |               group.addTask {
14 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
15 |                   return (key, newRef, components, messages)
16 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:10:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 8 | extension Dictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
 9 |
10 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
12 |           for (key, value) in self {
[61/182] Compiling OpenAPIKit30 ResolvedEndpoint.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/URLTemplate+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension URLTemplate: Validatable {}
   | |- warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:13:49: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |             for (idx, elem) in zip(self.indices, self) {
12 |                 group.addTask {
13 |                     return try await (idx, elem.externallyDereferenced(with: loader))
   |                                                 `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |                 }
15 |             }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:9:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 7 | extension Array where Element: ExternallyDereferenceable & Sendable {
 8 |
 9 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 |         try await withThrowingTaskGroup(of: (Int, (Element, OpenAPI.Components, [Loader.Message])).self) { group in
11 |             for (idx, elem) in zip(self.indices, self) {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:14:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
12 |           for (key, value) in self {
13 |               group.addTask {
14 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
15 |                   return (key, newRef, components, messages)
16 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:10:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 8 | extension Dictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
 9 |
10 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
12 |           for (key, value) in self {
[62/182] Compiling OpenAPIKit30 DereferencedParameter.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/URLTemplate+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension URLTemplate: Validatable {}
   | |- warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:13:49: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |             for (idx, elem) in zip(self.indices, self) {
12 |                 group.addTask {
13 |                     return try await (idx, elem.externallyDereferenced(with: loader))
   |                                                 `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |                 }
15 |             }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:9:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 7 | extension Array where Element: ExternallyDereferenceable & Sendable {
 8 |
 9 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 |         try await withThrowingTaskGroup(of: (Int, (Element, OpenAPI.Components, [Loader.Message])).self) { group in
11 |             for (idx, elem) in zip(self.indices, self) {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:14:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
12 |           for (key, value) in self {
13 |               group.addTask {
14 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
15 |                   return (key, newRef, components, messages)
16 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:10:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 8 | extension Dictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
 9 |
10 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
12 |           for (key, value) in self {
[63/182] Compiling OpenAPIKit30 DereferencedSchemaContext.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/URLTemplate+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension URLTemplate: Validatable {}
   | |- warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:13:49: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |             for (idx, elem) in zip(self.indices, self) {
12 |                 group.addTask {
13 |                     return try await (idx, elem.externallyDereferenced(with: loader))
   |                                                 `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |                 }
15 |             }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:9:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 7 | extension Array where Element: ExternallyDereferenceable & Sendable {
 8 |
 9 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 |         try await withThrowingTaskGroup(of: (Int, (Element, OpenAPI.Components, [Loader.Message])).self) { group in
11 |             for (idx, elem) in zip(self.indices, self) {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:14:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
12 |           for (key, value) in self {
13 |               group.addTask {
14 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
15 |                   return (key, newRef, components, messages)
16 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:10:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 8 | extension Dictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
 9 |
10 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
12 |           for (key, value) in self {
[64/182] Compiling OpenAPIKit30 Parameter.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/URLTemplate+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension URLTemplate: Validatable {}
   | |- warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:13:49: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |             for (idx, elem) in zip(self.indices, self) {
12 |                 group.addTask {
13 |                     return try await (idx, elem.externallyDereferenced(with: loader))
   |                                                 `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |                 }
15 |             }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:9:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 7 | extension Array where Element: ExternallyDereferenceable & Sendable {
 8 |
 9 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 |         try await withThrowingTaskGroup(of: (Int, (Element, OpenAPI.Components, [Loader.Message])).self) { group in
11 |             for (idx, elem) in zip(self.indices, self) {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:14:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
12 |           for (key, value) in self {
13 |               group.addTask {
14 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
15 |                   return (key, newRef, components, messages)
16 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:10:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 8 | extension Dictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
 9 |
10 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
12 |           for (key, value) in self {
[65/182] Compiling OpenAPIKit30 ParameterContext.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/URLTemplate+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension URLTemplate: Validatable {}
   | |- warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:13:49: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |             for (idx, elem) in zip(self.indices, self) {
12 |                 group.addTask {
13 |                     return try await (idx, elem.externallyDereferenced(with: loader))
   |                                                 `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |                 }
15 |             }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Array+ExternallyDereferenceable.swift:9:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 7 | extension Array where Element: ExternallyDereferenceable & Sendable {
 8 |
 9 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 |         try await withThrowingTaskGroup(of: (Int, (Element, OpenAPI.Components, [Loader.Message])).self) { group in
11 |             for (idx, elem) in zip(self.indices, self) {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:14:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
12 |           for (key, value) in self {
13 |               group.addTask {
14 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
15 |                   return (key, newRef, components, messages)
16 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/Dictionary+ExternallyDereferenceable.swift:10:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
 8 | extension Dictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
 9 |
10 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
11 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
12 |           for (key, value) in self {
[66/190] Compiling OpenAPIKit DocumentDecodingError.swift
[67/190] Compiling OpenAPIKit OperationDecodingError.swift
[68/190] Compiling OpenAPIKit PathDecodingError.swift
[69/190] Compiling OpenAPIKit ResponseDecodingError.swift
[70/190] Compiling OpenAPIKit Example.swift
[71/190] Compiling OpenAPIKit ExternalDocumentation.swift
[72/190] Compiling OpenAPIKit ExternalLoader.swift
[73/190] Compiling OpenAPIKit DereferencedHeader.swift
[74/190] Compiling OpenAPIKit30 DocumentDecodingError.swift
[75/190] Compiling OpenAPIKit30 OrderedDictionary+ExternallyDereferenceable.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
[76/190] Compiling OpenAPIKit OrderedDictionary+ExternallyDereferenceable.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
[77/190] Compiling OpenAPIKit OrderedDictionry+LocallyDereferenceable.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
[78/190] Compiling OpenAPIKit Validation+Builtins.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
[79/190] Compiling OpenAPIKit Validation.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
[80/190] Compiling OpenAPIKit Validator+Convenience.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
[81/190] Compiling OpenAPIKit Validator.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
[82/190] Compiling OpenAPIKit XML.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit30/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
[90/190] Compiling OpenAPIKit _CoreReExport.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:16:72: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
14 |           for (key, value) in self {
15 |               group.addTask {
16 |                   let (newRef, components, messages) = try await value.externallyDereferenced(with: loader)
   |                                                                        `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
17 |                   return (key, newRef, components, messages)
18 |               }
/host/spi-builder-workspace/Sources/OpenAPIKit/Utility/OrderedDictionary+ExternallyDereferenceable.swift:12:69: warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
10 | extension OrderedDictionary where Key: Sendable, Value: ExternallyDereferenceable & Sendable {
11 |
12 |     public func externallyDereferenced<Loader: ExternalLoader>(with loader: Loader.Type) async throws -> (Self, OpenAPI.Components, [Loader.Message]) {
   |                                                                     `- warning: capture of non-Sendable type 'Loader.Type' in an isolated closure; this is an error in the Swift 6 language mode
13 |         try await withThrowingTaskGroup(of: (Key, Value, OpenAPI.Components, [Loader.Message]).self) { group in
14 |           for (key, value) in self {
/host/spi-builder-workspace/Sources/OpenAPIKit30/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[100/190] Compiling OpenAPIKit ParameterContext.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:199:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
197 | /// a type. This can come into play when writing fragments of schemas
198 | /// to be combined later.
199 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |     public var jsonType: JSONType {
201 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:206:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
204 |
205 | /// The allowed "format" properties for `.boolean` schemas.
206 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |     public var jsonType: JSONType {
208 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:213:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
211 |
212 | /// The allowed "format" properties for `.object` schemas.
213 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |     public var jsonType: JSONType {
215 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:220:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
218 |
219 | /// The allowed "format" properties for `.array` schemas.
220 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var jsonType: JSONType {
222 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:227:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
225 |
226 | /// The allowed "format" properties for `.number` schemas.
227 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |     public var jsonType: JSONType {
229 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:234:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
232 |
233 | /// The allowed "format" properties for `.integer` schemas.
234 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |     public var jsonType: JSONType {
236 |         return .integer
[101/190] Compiling OpenAPIKit ParameterSchemaContext.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:199:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
197 | /// a type. This can come into play when writing fragments of schemas
198 | /// to be combined later.
199 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |     public var jsonType: JSONType {
201 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:206:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
204 |
205 | /// The allowed "format" properties for `.boolean` schemas.
206 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |     public var jsonType: JSONType {
208 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:213:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
211 |
212 | /// The allowed "format" properties for `.object` schemas.
213 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |     public var jsonType: JSONType {
215 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:220:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
218 |
219 | /// The allowed "format" properties for `.array` schemas.
220 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var jsonType: JSONType {
222 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:227:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
225 |
226 | /// The allowed "format" properties for `.number` schemas.
227 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |     public var jsonType: JSONType {
229 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:234:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
232 |
233 | /// The allowed "format" properties for `.integer` schemas.
234 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |     public var jsonType: JSONType {
236 |         return .integer
[102/190] Compiling OpenAPIKit DereferencedPathItem.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:199:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
197 | /// a type. This can come into play when writing fragments of schemas
198 | /// to be combined later.
199 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |     public var jsonType: JSONType {
201 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:206:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
204 |
205 | /// The allowed "format" properties for `.boolean` schemas.
206 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |     public var jsonType: JSONType {
208 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:213:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
211 |
212 | /// The allowed "format" properties for `.object` schemas.
213 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |     public var jsonType: JSONType {
215 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:220:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
218 |
219 | /// The allowed "format" properties for `.array` schemas.
220 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var jsonType: JSONType {
222 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:227:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
225 |
226 | /// The allowed "format" properties for `.number` schemas.
227 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |     public var jsonType: JSONType {
229 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:234:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
232 |
233 | /// The allowed "format" properties for `.integer` schemas.
234 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |     public var jsonType: JSONType {
236 |         return .integer
[103/190] Compiling OpenAPIKit PathItem.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:199:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
197 | /// a type. This can come into play when writing fragments of schemas
198 | /// to be combined later.
199 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |     public var jsonType: JSONType {
201 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:206:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
204 |
205 | /// The allowed "format" properties for `.boolean` schemas.
206 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |     public var jsonType: JSONType {
208 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:213:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
211 |
212 | /// The allowed "format" properties for `.object` schemas.
213 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |     public var jsonType: JSONType {
215 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:220:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
218 |
219 | /// The allowed "format" properties for `.array` schemas.
220 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var jsonType: JSONType {
222 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:227:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
225 |
226 | /// The allowed "format" properties for `.number` schemas.
227 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |     public var jsonType: JSONType {
229 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:234:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
232 |
233 | /// The allowed "format" properties for `.integer` schemas.
234 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |     public var jsonType: JSONType {
236 |         return .integer
[104/190] Compiling OpenAPIKit ResolvedRoute.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:199:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
197 | /// a type. This can come into play when writing fragments of schemas
198 | /// to be combined later.
199 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |     public var jsonType: JSONType {
201 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:206:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
204 |
205 | /// The allowed "format" properties for `.boolean` schemas.
206 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |     public var jsonType: JSONType {
208 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:213:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
211 |
212 | /// The allowed "format" properties for `.object` schemas.
213 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |     public var jsonType: JSONType {
215 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:220:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
218 |
219 | /// The allowed "format" properties for `.array` schemas.
220 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var jsonType: JSONType {
222 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:227:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
225 |
226 | /// The allowed "format" properties for `.number` schemas.
227 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |     public var jsonType: JSONType {
229 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:234:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
232 |
233 | /// The allowed "format" properties for `.integer` schemas.
234 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |     public var jsonType: JSONType {
236 |         return .integer
[105/190] Compiling OpenAPIKit DereferencedRequest.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:199:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
197 | /// a type. This can come into play when writing fragments of schemas
198 | /// to be combined later.
199 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |     public var jsonType: JSONType {
201 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:206:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
204 |
205 | /// The allowed "format" properties for `.boolean` schemas.
206 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |     public var jsonType: JSONType {
208 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:213:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
211 |
212 | /// The allowed "format" properties for `.object` schemas.
213 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |     public var jsonType: JSONType {
215 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:220:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
218 |
219 | /// The allowed "format" properties for `.array` schemas.
220 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var jsonType: JSONType {
222 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:227:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
225 |
226 | /// The allowed "format" properties for `.number` schemas.
227 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |     public var jsonType: JSONType {
229 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:234:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
232 |
233 | /// The allowed "format" properties for `.integer` schemas.
234 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |     public var jsonType: JSONType {
236 |         return .integer
[106/190] Compiling OpenAPIKit Request.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:199:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
197 | /// a type. This can come into play when writing fragments of schemas
198 | /// to be combined later.
199 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |     public var jsonType: JSONType {
201 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:206:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
204 |
205 | /// The allowed "format" properties for `.boolean` schemas.
206 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |     public var jsonType: JSONType {
208 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:213:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
211 |
212 | /// The allowed "format" properties for `.object` schemas.
213 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |     public var jsonType: JSONType {
215 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:220:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
218 |
219 | /// The allowed "format" properties for `.array` schemas.
220 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var jsonType: JSONType {
222 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:227:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
225 |
226 | /// The allowed "format" properties for `.number` schemas.
227 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |     public var jsonType: JSONType {
229 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:234:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
232 |
233 | /// The allowed "format" properties for `.integer` schemas.
234 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |     public var jsonType: JSONType {
236 |         return .integer
[107/190] Compiling OpenAPIKit DereferencedResponse.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:199:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
197 | /// a type. This can come into play when writing fragments of schemas
198 | /// to be combined later.
199 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |     public var jsonType: JSONType {
201 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:206:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
204 |
205 | /// The allowed "format" properties for `.boolean` schemas.
206 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |     public var jsonType: JSONType {
208 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:213:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
211 |
212 | /// The allowed "format" properties for `.object` schemas.
213 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |     public var jsonType: JSONType {
215 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:220:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
218 |
219 | /// The allowed "format" properties for `.array` schemas.
220 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var jsonType: JSONType {
222 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:227:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
225 |
226 | /// The allowed "format" properties for `.number` schemas.
227 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |     public var jsonType: JSONType {
229 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:234:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
232 |
233 | /// The allowed "format" properties for `.integer` schemas.
234 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |     public var jsonType: JSONType {
236 |         return .integer
[108/190] Compiling OpenAPIKit Response.swift
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:199:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
197 | /// a type. This can come into play when writing fragments of schemas
198 | /// to be combined later.
199 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |     public var jsonType: JSONType {
201 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:206:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
204 |
205 | /// The allowed "format" properties for `.boolean` schemas.
206 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |     public var jsonType: JSONType {
208 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:213:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
211 |
212 | /// The allowed "format" properties for `.object` schemas.
213 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |     public var jsonType: JSONType {
215 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:220:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
218 |
219 | /// The allowed "format" properties for `.array` schemas.
220 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var jsonType: JSONType {
222 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:227:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
225 |
226 | /// The allowed "format" properties for `.number` schemas.
227 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |     public var jsonType: JSONType {
229 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:234:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
232 |
233 | /// The allowed "format" properties for `.integer` schemas.
234 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |     public var jsonType: JSONType {
236 |         return .integer
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:232:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
230 | /// a type. This can come into play when writing fragments of schemas
231 | /// to be combined later.
232 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
233 |     public var jsonType: JSONType {
234 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:239:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
237 |
238 | /// The allowed "format" properties for `.boolean` schemas.
239 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
240 |     public var jsonType: JSONType {
241 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:246:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
244 |
245 | /// The allowed "format" properties for `.object` schemas.
246 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
247 |     public var jsonType: JSONType {
248 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:253:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
251 |
252 | /// The allowed "format" properties for `.array` schemas.
253 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
254 |     public var jsonType: JSONType {
255 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:260:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
258 |
259 | /// The allowed "format" properties for `.number` schemas.
260 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
261 |     public var jsonType: JSONType {
262 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:267:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
265 |
266 | /// The allowed "format" properties for `.integer` schemas.
267 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
268 |     public var jsonType: JSONType {
269 |         return .integer
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:232:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
230 | /// a type. This can come into play when writing fragments of schemas
231 | /// to be combined later.
232 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
233 |     public var jsonType: JSONType {
234 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:239:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
237 |
238 | /// The allowed "format" properties for `.boolean` schemas.
239 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
240 |     public var jsonType: JSONType {
241 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:246:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
244 |
245 | /// The allowed "format" properties for `.object` schemas.
246 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
247 |     public var jsonType: JSONType {
248 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:253:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
251 |
252 | /// The allowed "format" properties for `.array` schemas.
253 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
254 |     public var jsonType: JSONType {
255 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:260:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
258 |
259 | /// The allowed "format" properties for `.number` schemas.
260 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
261 |     public var jsonType: JSONType {
262 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:267:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
265 |
266 | /// The allowed "format" properties for `.integer` schemas.
267 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
268 |     public var jsonType: JSONType {
269 |         return .integer
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:232:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
230 | /// a type. This can come into play when writing fragments of schemas
231 | /// to be combined later.
232 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
233 |     public var jsonType: JSONType {
234 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:239:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
237 |
238 | /// The allowed "format" properties for `.boolean` schemas.
239 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
240 |     public var jsonType: JSONType {
241 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:246:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
244 |
245 | /// The allowed "format" properties for `.object` schemas.
246 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
247 |     public var jsonType: JSONType {
248 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:253:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
251 |
252 | /// The allowed "format" properties for `.array` schemas.
253 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
254 |     public var jsonType: JSONType {
255 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:260:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
258 |
259 | /// The allowed "format" properties for `.number` schemas.
260 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
261 |     public var jsonType: JSONType {
262 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:267:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
265 |
266 | /// The allowed "format" properties for `.integer` schemas.
267 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
268 |     public var jsonType: JSONType {
269 |         return .integer
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:232:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
230 | /// a type. This can come into play when writing fragments of schemas
231 | /// to be combined later.
232 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
233 |     public var jsonType: JSONType {
234 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:239:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
237 |
238 | /// The allowed "format" properties for `.boolean` schemas.
239 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
240 |     public var jsonType: JSONType {
241 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:246:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
244 |
245 | /// The allowed "format" properties for `.object` schemas.
246 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
247 |     public var jsonType: JSONType {
248 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:253:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
251 |
252 | /// The allowed "format" properties for `.array` schemas.
253 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
254 |     public var jsonType: JSONType {
255 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:260:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
258 |
259 | /// The allowed "format" properties for `.number` schemas.
260 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
261 |     public var jsonType: JSONType {
262 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:267:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
265 |
266 | /// The allowed "format" properties for `.integer` schemas.
267 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
268 |     public var jsonType: JSONType {
269 |         return .integer
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:232:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
230 | /// a type. This can come into play when writing fragments of schemas
231 | /// to be combined later.
232 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
233 |     public var jsonType: JSONType {
234 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:239:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
237 |
238 | /// The allowed "format" properties for `.boolean` schemas.
239 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
240 |     public var jsonType: JSONType {
241 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:246:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
244 |
245 | /// The allowed "format" properties for `.object` schemas.
246 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
247 |     public var jsonType: JSONType {
248 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:253:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
251 |
252 | /// The allowed "format" properties for `.array` schemas.
253 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
254 |     public var jsonType: JSONType {
255 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:260:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
258 |
259 | /// The allowed "format" properties for `.number` schemas.
260 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
261 |     public var jsonType: JSONType {
262 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:267:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
265 |
266 | /// The allowed "format" properties for `.integer` schemas.
267 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
268 |     public var jsonType: JSONType {
269 |         return .integer
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:232:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
230 | /// a type. This can come into play when writing fragments of schemas
231 | /// to be combined later.
232 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
233 |     public var jsonType: JSONType {
234 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:239:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
237 |
238 | /// The allowed "format" properties for `.boolean` schemas.
239 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
240 |     public var jsonType: JSONType {
241 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:246:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
244 |
245 | /// The allowed "format" properties for `.object` schemas.
246 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
247 |     public var jsonType: JSONType {
248 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:253:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
251 |
252 | /// The allowed "format" properties for `.array` schemas.
253 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
254 |     public var jsonType: JSONType {
255 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:260:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
258 |
259 | /// The allowed "format" properties for `.number` schemas.
260 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
261 |     public var jsonType: JSONType {
262 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:267:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
265 |
266 | /// The allowed "format" properties for `.integer` schemas.
267 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
268 |     public var jsonType: JSONType {
269 |         return .integer
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:232:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
230 | /// a type. This can come into play when writing fragments of schemas
231 | /// to be combined later.
232 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
233 |     public var jsonType: JSONType {
234 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:239:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
237 |
238 | /// The allowed "format" properties for `.boolean` schemas.
239 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
240 |     public var jsonType: JSONType {
241 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:246:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
244 |
245 | /// The allowed "format" properties for `.object` schemas.
246 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
247 |     public var jsonType: JSONType {
248 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:253:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
251 |
252 | /// The allowed "format" properties for `.array` schemas.
253 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
254 |     public var jsonType: JSONType {
255 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:260:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
258 |
259 | /// The allowed "format" properties for `.number` schemas.
260 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
261 |     public var jsonType: JSONType {
262 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:267:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
265 |
266 | /// The allowed "format" properties for `.integer` schemas.
267 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
268 |     public var jsonType: JSONType {
269 |         return .integer
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:232:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
230 | /// a type. This can come into play when writing fragments of schemas
231 | /// to be combined later.
232 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
233 |     public var jsonType: JSONType {
234 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:239:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
237 |
238 | /// The allowed "format" properties for `.boolean` schemas.
239 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
240 |     public var jsonType: JSONType {
241 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:246:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
244 |
245 | /// The allowed "format" properties for `.object` schemas.
246 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
247 |     public var jsonType: JSONType {
248 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:253:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
251 |
252 | /// The allowed "format" properties for `.array` schemas.
253 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
254 |     public var jsonType: JSONType {
255 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:260:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
258 |
259 | /// The allowed "format" properties for `.number` schemas.
260 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
261 |     public var jsonType: JSONType {
262 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:267:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
265 |
266 | /// The allowed "format" properties for `.integer` schemas.
267 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
268 |     public var jsonType: JSONType {
269 |         return .integer
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:232:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
230 | /// a type. This can come into play when writing fragments of schemas
231 | /// to be combined later.
232 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
233 |     public var jsonType: JSONType {
234 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:239:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
237 |
238 | /// The allowed "format" properties for `.boolean` schemas.
239 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
240 |     public var jsonType: JSONType {
241 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:246:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
244 |
245 | /// The allowed "format" properties for `.object` schemas.
246 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
247 |     public var jsonType: JSONType {
248 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:253:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
251 |
252 | /// The allowed "format" properties for `.array` schemas.
253 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
254 |     public var jsonType: JSONType {
255 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:260:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
258 |
259 | /// The allowed "format" properties for `.number` schemas.
260 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
261 |     public var jsonType: JSONType {
262 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit/Schema Object/TypesAndFormats.swift:267:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
265 |
266 | /// The allowed "format" properties for `.integer` schemas.
267 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
268 |     public var jsonType: JSONType {
269 |         return .integer
[118/190] Compiling OpenAPIKit30 ParameterSchemaContext.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[119/190] Compiling OpenAPIKit30 DereferencedPathItem.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[120/190] Compiling OpenAPIKit30 PathItem.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[121/190] Compiling OpenAPIKit30 ResolvedRoute.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[122/190] Compiling OpenAPIKit30 DereferencedRequest.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[123/190] Compiling OpenAPIKit Either+ExternallyDereferenceable.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[124/190] Compiling OpenAPIKit Either+LocallyDereferenceable.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[125/190] Compiling OpenAPIKit Either+Summarizable.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[126/190] Compiling OpenAPIKit Either+Validatable.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[127/190] Compiling OpenAPIKit30 OperationDecodingError.swift
[128/190] Compiling OpenAPIKit30 PathDecodingError.swift
[129/190] Compiling OpenAPIKit30 ResponseDecodingError.swift
[130/190] Compiling OpenAPIKit30 Example.swift
[131/190] Compiling OpenAPIKit30 ExternalDocumentation.swift
[132/190] Compiling OpenAPIKit30 ExternalLoader.swift
[133/190] Compiling OpenAPIKit30 DereferencedHeader.swift
[134/190] Compiling OpenAPIKit30 Header.swift
[135/190] Compiling OpenAPIKit30 JSONReference.swift
/host/spi-builder-workspace/Sources/OpenAPIKit/Parameter/ParameterSchemaContext.swift:223:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
221 | }
222 |
223 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
224 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Parameter/ParameterSchemaContext.swift:223:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
221 | }
222 |
223 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
224 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Parameter/ParameterSchemaContext.swift:223:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
221 | }
222 |
223 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
224 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Parameter/ParameterSchemaContext.swift:223:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
221 | }
222 |
223 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
224 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Parameter/ParameterSchemaContext.swift:223:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
221 | }
222 |
223 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
224 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Parameter/ParameterSchemaContext.swift:223:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
221 | }
222 |
223 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
224 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Parameter/ParameterSchemaContext.swift:223:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
221 | }
222 |
223 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
224 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Parameter/ParameterSchemaContext.swift:223:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
221 | }
222 |
223 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
224 |
/host/spi-builder-workspace/Sources/OpenAPIKit/Parameter/ParameterSchemaContext.swift:223:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
221 | }
222 |
223 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
224 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
225 |
[172/190] Compiling OpenAPIKit Callbacks.swift
[173/190] Compiling OpenAPIKit CodableVendorExtendable.swift
[174/190] Compiling OpenAPIKit Components+JSONReference.swift
[175/190] Compiling OpenAPIKit Components+Locatable.swift
[176/190] Compiling OpenAPIKit Components.swift
[177/190] Compiling OpenAPIKit Content.swift
[178/190] Compiling OpenAPIKit ContentEncoding.swift
[179/190] Compiling OpenAPIKit DereferencedContent.swift
[180/190] Compiling OpenAPIKit DereferencedContentEncoding.swift
[181/190] Emitting module OpenAPIKit30
/host/spi-builder-workspace/Sources/OpenAPIKit30/Either/Either+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension Either: Validatable where A: Validatable, B: Validatable {}
   | |- warning: extension declares a conformance of imported type 'Either' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Parameter/ParameterSchemaContext.swift:224:1: warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
222 | }
223 |
224 | extension OpenAPI.Parameter.SchemaContext.Style: Validatable {}
    | |- warning: extension declares a conformance of imported type 'ParameterSchemaContextStyle' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
225 |
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:199:1: warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
197 | /// a type. This can come into play when writing fragments of schemas
198 | /// to be combined later.
199 | extension JSONTypeFormat.AnyFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'AnyFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
200 |     public var jsonType: JSONType {
201 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:206:1: warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
204 |
205 | /// The allowed "format" properties for `.boolean` schemas.
206 | extension JSONTypeFormat.BooleanFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'BooleanFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
207 |     public var jsonType: JSONType {
208 |         return .boolean
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:213:1: warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
211 |
212 | /// The allowed "format" properties for `.object` schemas.
213 | extension JSONTypeFormat.ObjectFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ObjectFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
214 |     public var jsonType: JSONType {
215 |         return .object
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:220:1: warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
218 |
219 | /// The allowed "format" properties for `.array` schemas.
220 | extension JSONTypeFormat.ArrayFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'ArrayFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
221 |     public var jsonType: JSONType {
222 |         return .array
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:227:1: warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
225 |
226 | /// The allowed "format" properties for `.number` schemas.
227 | extension JSONTypeFormat.NumberFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'NumberFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
228 |     public var jsonType: JSONType {
229 |         return .number
/host/spi-builder-workspace/Sources/OpenAPIKit30/Schema Object/TypesAndFormats.swift:234:1: warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
232 |
233 | /// The allowed "format" properties for `.integer` schemas.
234 | extension JSONTypeFormat.IntegerFormat: OpenAPIFormat {
    | |- warning: extension declares a conformance of imported type 'IntegerFormat' to imported protocols 'Decodable', 'Encodable', 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
    | `- note: add '@retroactive' to silence this warning
235 |     public var jsonType: JSONType {
236 |         return .integer
/host/spi-builder-workspace/Sources/OpenAPIKit30/URLTemplate+Validatable.swift:10:1: warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
 8 | import OpenAPIKitCore
 9 |
10 | extension URLTemplate: Validatable {}
   | |- warning: extension declares a conformance of imported type 'URLTemplate' to imported protocol 'Validatable'; this will not behave correctly if the owners of 'OpenAPIKitCore' introduce this conformance in the future
   | `- note: add '@retroactive' to silence this warning
11 |
[193/195] Emitting module OpenAPIKitCompat
[194/195] Compiling OpenAPIKitCompat Either+Map.swift
[195/195] Compiling OpenAPIKitCompat Compat30To31.swift
Build complete! (145.24s)
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-docc-plugin",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-docc-plugin"
    },
    {
      "identity" : "yams",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "5.1.0",
            "upper_bound" : "7.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/jpsim/Yams.git"
    }
  ],
  "manifest_display_name" : "OpenAPIKit",
  "name" : "OpenAPIKit",
  "path" : "/host/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "10.15"
    },
    {
      "name" : "ios",
      "version" : "11.0"
    }
  ],
  "products" : [
    {
      "name" : "OpenAPIKit30",
      "targets" : [
        "OpenAPIKit30"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "OpenAPIKit",
      "targets" : [
        "OpenAPIKit"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "OpenAPIKitCompat",
      "targets" : [
        "OpenAPIKitCompat"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "swift_languages_versions" : [
    "5"
  ],
  "targets" : [
    {
      "c99name" : "OrderedDictionaryTests",
      "module_type" : "SwiftTarget",
      "name" : "OrderedDictionaryTests",
      "path" : "Tests/OrderedDictionaryTests",
      "product_dependencies" : [
        "Yams"
      ],
      "sources" : [
        "OrderedDictionaryTests.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKitCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenAPIKitTests",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKitTests",
      "path" : "Tests/OpenAPIKitTests",
      "product_dependencies" : [
        "Yams"
      ],
      "sources" : [
        "ComponentsTests.swift",
        "Content/ContentTests.swift",
        "Content/DereferencedContentTests.swift",
        "DiscriminatorTests.swift",
        "Document/DereferencedDocumentTests.swift",
        "Document/DocumentInfoTests.swift",
        "Document/DocumentTests.swift",
        "Document/ExternalDereferencingDocumentTests.swift",
        "Document/ResolvedDocumentTests.swift",
        "EaseOfUseTests.swift",
        "ExampleTests.swift",
        "ExternalDocumentationTests.swift",
        "Header/DereferencedHeaderTests.swift",
        "Header/HeaderTests.swift",
        "JSONReferenceTests.swift",
        "LinkTests.swift",
        "OpenAPIReferenceTests.swift",
        "Operation/DereferencedOperationTests.swift",
        "Operation/OperationTests.swift",
        "Operation/ResolvedEndpointTests.swift",
        "Parameter/DereferencedParameterTests.swift",
        "Parameter/DereferencedSchemaContextTests.swift",
        "Parameter/ParameterContextTests.swift",
        "Parameter/ParameterSchemaTests.swift",
        "Parameter/ParameterTests.swift",
        "Path Item/DereferencedPathItemTests.swift",
        "Path Item/PathItemTests.swift",
        "Path Item/ResolvedRouteTests.swift",
        "Request/DereferencedRequestTests.swift",
        "Request/RequestTests.swift",
        "Response/DereferencedResponseTests.swift",
        "Response/ResponseTests.swift",
        "Result+ValueTests.swift",
        "RuntimeExpressionTests.swift",
        "Schema Conformances/SwiftPrimitiveTypes+OpenAPITests.swift",
        "Schema Object/DereferencedSchemaObjectTests.swift",
        "Schema Object/JSONSchemaTests.swift",
        "Schema Object/SchemaFragmentCombiningTests.swift",
        "Schema Object/SchemaFragmentTests.swift",
        "Schema Object/SchemaObjectInternalTests.swift",
        "Schema Object/SchemaObjectYamsTests.swift",
        "Security/OauthFlowsTests.swift",
        "Security/SecuritySchemeTests.swift",
        "ServerTests.swift",
        "TagTests.swift",
        "TestHelpers.swift",
        "Validator/BuiltinValidationTests.swift",
        "Validator/Validation+ConvenienceTests.swift",
        "Validator/ValidationTests.swift",
        "Validator/ValidatorTests.swift",
        "VendorExtendableTests.swift",
        "XMLTests.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenAPIKitRealSpecSuite",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKitRealSpecSuite",
      "path" : "Tests/OpenAPIKitRealSpecSuite",
      "product_dependencies" : [
        "Yams"
      ],
      "sources" : [
        "TemplateAPITests.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenAPIKitErrorReportingTests",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKitErrorReportingTests",
      "path" : "Tests/OpenAPIKitErrorReportingTests",
      "product_dependencies" : [
        "Yams"
      ],
      "sources" : [
        "ComponentErrorTests.swift",
        "DocumentErrorTests.swift",
        "Helpers.swift",
        "JSONReferenceErrorTests.swift",
        "OperationErrorTests.swift",
        "PathsErrorTests.swift",
        "RequestContentMapErrorTests.swift",
        "RequestContentSchemaErrorTests.swift",
        "RequestErrorTests.swift",
        "ResponseErrorTests.swift",
        "SchemaErrorTests.swift",
        "SecuritySchemeErrorTests.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKit"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenAPIKitCoreTests",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKitCoreTests",
      "path" : "Tests/OpenAPIKitCoreTests",
      "sources" : [
        "CallbackURLTests.swift",
        "ComponentKeyTests.swift",
        "ContentTypeTests.swift",
        "Either+CustomStringConvertibleTests.swift",
        "GenericErrorTests.swift",
        "TestHelpers.swift",
        "URLTemplate/URLTemplateTests.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKitCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenAPIKitCore",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKitCore",
      "path" : "Sources/OpenAPIKitCore",
      "product_memberships" : [
        "OpenAPIKit30",
        "OpenAPIKit",
        "OpenAPIKitCompat"
      ],
      "sources" : [
        "AnyCodable+Validatable.swift",
        "AnyCodable/AnyCodable.swift",
        "Either/Either+Codable.swift",
        "Either/Either+CustomStringConvertible.swift",
        "Either/Either.swift",
        "Encoding and Decoding Errors And Warnings/CodingPathError.swift",
        "Encoding and Decoding Errors And Warnings/DecodingErrorExtensions.swift",
        "Encoding and Decoding Errors And Warnings/DiggingError.swift",
        "Encoding and Decoding Errors And Warnings/EitherDecodeNoTypesMatchedErrorExtensions.swift",
        "Encoding and Decoding Errors And Warnings/GenericError.swift",
        "Encoding and Decoding Errors And Warnings/OpenAPIDecodingErrors.swift",
        "Encoding and Decoding Errors And Warnings/OpenAPIError.swift",
        "Encoding and Decoding Errors And Warnings/OpenAPIWarning.swift",
        "Encoding and Decoding Errors And Warnings/RequestDecodingError.swift",
        "OpenAPIReference.swift",
        "OrderedDictionary+Validatable.swift",
        "OrderedDictionary/OrderedDictionary.swift",
        "OrderedDictionary/StringConvertibleHintProvider.swift",
        "Shared.swift",
        "Shared/CallbackURL.swift",
        "Shared/ComponentKey.swift",
        "Shared/ContentType.swift",
        "Shared/Discriminator.swift",
        "Shared/HttpMethod.swift",
        "Shared/JSONSchemaPermissions.swift",
        "Shared/JSONTypeFormat.swift",
        "Shared/OAuthFlows.swift",
        "Shared/ParameterContextLocation.swift",
        "Shared/ParameterSchemaContextStyle.swift",
        "Shared/Path.swift",
        "Shared/ResponseStatusCode.swift",
        "Shared/SecurityScheme.swift",
        "URLTemplate/URLTemplate+Parsing.swift",
        "URLTemplate/URLTemplate.swift",
        "Utility/Container+DecodeURLAsString.swift",
        "Utility/Optional+Zip.swift",
        "Utility/Result+Value.swift",
        "Validatable.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "OpenAPIKitCompatTests",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKitCompatTests",
      "path" : "Tests/OpenAPIKitCompatTests",
      "sources" : [
        "DocumentConversionTests.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKitCompat"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenAPIKitCompat",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKitCompat",
      "path" : "Sources/OpenAPIKitCompat",
      "product_memberships" : [
        "OpenAPIKitCompat"
      ],
      "sources" : [
        "Compat30To31.swift",
        "Either+Map.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKit30",
        "OpenAPIKit"
      ],
      "type" : "library"
    },
    {
      "c99name" : "OpenAPIKit30Tests",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKit30Tests",
      "path" : "Tests/OpenAPIKit30Tests",
      "product_dependencies" : [
        "Yams"
      ],
      "sources" : [
        "ComponentsTests.swift",
        "Content/ContentTests.swift",
        "Content/DereferencedContentTests.swift",
        "DiscriminatorTests.swift",
        "Document/DereferencedDocumentTests.swift",
        "Document/DocumentInfoTests.swift",
        "Document/DocumentTests.swift",
        "Document/ExternalDereferencingDocumentTests.swift",
        "Document/ResolvedDocumentTests.swift",
        "EaseOfUseTests.swift",
        "ExampleTests.swift",
        "ExternalDocumentationTests.swift",
        "Header/DereferencedHeaderTests.swift",
        "Header/HeaderTests.swift",
        "JSONReferenceTests.swift",
        "LinkTests.swift",
        "Operation/DereferencedOperationTests.swift",
        "Operation/OperationTests.swift",
        "Operation/ResolvedEndpointTests.swift",
        "Parameter/DereferencedParameterTests.swift",
        "Parameter/DereferencedSchemaContextTests.swift",
        "Parameter/ParameterContextTests.swift",
        "Parameter/ParameterSchemaTests.swift",
        "Parameter/ParameterTests.swift",
        "Path Item/DereferencedPathItemTests.swift",
        "Path Item/PathItemTests.swift",
        "Path Item/ResolvedRouteTests.swift",
        "Request/DereferencedRequestTests.swift",
        "Request/RequestTests.swift",
        "Response/DereferencedResponseTests.swift",
        "Response/ResponseTests.swift",
        "Result+ValueTests.swift",
        "RuntimeExpressionTests.swift",
        "Schema Conformances/SwiftPrimitiveTypes+OpenAPITests.swift",
        "Schema Object/DereferencedSchemaObjectTests.swift",
        "Schema Object/JSONSchemaTests.swift",
        "Schema Object/SchemaFragmentCombiningTests.swift",
        "Schema Object/SchemaFragmentTests.swift",
        "Schema Object/SchemaObjectInternalTests.swift",
        "Schema Object/SchemaObjectYamsTests.swift",
        "Security/OauthFlowsTests.swift",
        "Security/SecuritySchemeTests.swift",
        "ServerTests.swift",
        "TagTests.swift",
        "TestHelpers.swift",
        "Validator/BuiltinValidationTests.swift",
        "Validator/Validation+ConvenienceTests.swift",
        "Validator/ValidationTests.swift",
        "Validator/ValidatorTests.swift",
        "VendorExtendableTests.swift",
        "XMLTests.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKit30"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenAPIKit30RealSpecSuite",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKit30RealSpecSuite",
      "path" : "Tests/OpenAPIKit30RealSpecSuite",
      "product_dependencies" : [
        "Yams"
      ],
      "sources" : [
        "GitHubAPITests.swift",
        "GoogleBooksAPITests.swift",
        "PetStoreAPITests.swift",
        "SwaggerDocSamplesTests.swift",
        "TomTomAPITests.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKit30"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenAPIKit30ErrorReportingTests",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKit30ErrorReportingTests",
      "path" : "Tests/OpenAPIKit30ErrorReportingTests",
      "product_dependencies" : [
        "Yams"
      ],
      "sources" : [
        "ComponentErrorTests.swift",
        "DocumentErrorTests.swift",
        "Helpers.swift",
        "JSONReferenceErrorTests.swift",
        "OperationErrorTests.swift",
        "PathsErrorTests.swift",
        "RequestContentMapErrorTests.swift",
        "RequestContentSchemaErrorTests.swift",
        "RequestErrorTests.swift",
        "ResponseErrorTests.swift",
        "SchemaErrorTests.swift",
        "SecuritySchemeErrorTests.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKit30"
      ],
      "type" : "test"
    },
    {
      "c99name" : "OpenAPIKit30",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKit30",
      "path" : "Sources/OpenAPIKit30",
      "product_memberships" : [
        "OpenAPIKit30",
        "OpenAPIKitCompat"
      ],
      "sources" : [
        "Callbacks.swift",
        "CodableVendorExtendable.swift",
        "Components Object/Components+JSONReference.swift",
        "Components Object/Components+Locatable.swift",
        "Components Object/Components.swift",
        "Content/Content.swift",
        "Content/ContentEncoding.swift",
        "Content/DereferencedContent.swift",
        "Content/DereferencedContentEncoding.swift",
        "Document/DereferencedDocument.swift",
        "Document/Document.swift",
        "Document/DocumentInfo.swift",
        "Document/ResolvedDocument.swift",
        "Either/Either+Convenience.swift",
        "Either/Either+ExternallyDereferenceable.swift",
        "Either/Either+LocallyDereferenceable.swift",
        "Either/Either+Validatable.swift",
        "Encoding and Decoding Errors/DocumentDecodingError.swift",
        "Encoding and Decoding Errors/OperationDecodingError.swift",
        "Encoding and Decoding Errors/PathDecodingError.swift",
        "Encoding and Decoding Errors/ResponseDecodingError.swift",
        "Example.swift",
        "ExternalDocumentation.swift",
        "ExternalLoader.swift",
        "Header/DereferencedHeader.swift",
        "Header/Header.swift",
        "JSONReference.swift",
        "Link.swift",
        "OpenAPI.swift",
        "Operation/DereferencedOperation.swift",
        "Operation/Operation.swift",
        "Operation/ResolvedEndpoint.swift",
        "Parameter/DereferencedParameter.swift",
        "Parameter/DereferencedSchemaContext.swift",
        "Parameter/Parameter.swift",
        "Parameter/ParameterContext.swift",
        "Parameter/ParameterSchemaContext.swift",
        "Path Item/DereferencedPathItem.swift",
        "Path Item/PathItem.swift",
        "Path Item/ResolvedRoute.swift",
        "Request/DereferencedRequest.swift",
        "Request/Request.swift",
        "Response/DereferencedResponse.swift",
        "Response/Response.swift",
        "RuntimeExpression.swift",
        "Schema Conformances/SchemaProtocols.swift",
        "Schema Conformances/SwiftPrimitiveTypes+OpenAPI.swift",
        "Schema Object/DereferencedJSONSchema.swift",
        "Schema Object/JSONSchema+Combining.swift",
        "Schema Object/JSONSchema.swift",
        "Schema Object/JSONSchemaContext.swift",
        "Schema Object/SimplifiedJSONSchema.swift",
        "Schema Object/TypesAndFormats.swift",
        "Security/DereferencedSecurityRequirement.swift",
        "Security/SecurityScheme.swift",
        "Server.swift",
        "Tag.swift",
        "URLTemplate+Validatable.swift",
        "Utility/Array+ExternallyDereferenceable.swift",
        "Utility/Container+DecodeURLAsString.swift",
        "Utility/Dictionary+ExternallyDereferenceable.swift",
        "Utility/Optional+ExternallyDereferenceable.swift",
        "Utility/OrderedDictionary+ExternallyDereferenceable.swift",
        "Utility/OrderedDictionry+LocallyDereferenceable.swift",
        "Validator/Validation+Builtins.swift",
        "Validator/Validation.swift",
        "Validator/Validator+Convenience.swift",
        "Validator/Validator.swift",
        "XML.swift",
        "_CoreReExport.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKitCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "OpenAPIKit",
      "module_type" : "SwiftTarget",
      "name" : "OpenAPIKit",
      "path" : "Sources/OpenAPIKit",
      "product_memberships" : [
        "OpenAPIKit",
        "OpenAPIKitCompat"
      ],
      "sources" : [
        "Callbacks.swift",
        "CodableVendorExtendable.swift",
        "Components Object/Components+JSONReference.swift",
        "Components Object/Components+Locatable.swift",
        "Components Object/Components.swift",
        "Content/Content.swift",
        "Content/ContentEncoding.swift",
        "Content/DereferencedContent.swift",
        "Content/DereferencedContentEncoding.swift",
        "Document/DereferencedDocument.swift",
        "Document/Document.swift",
        "Document/DocumentInfo.swift",
        "Document/ResolvedDocument.swift",
        "Either/Either+Convenience.swift",
        "Either/Either+ExternallyDereferenceable.swift",
        "Either/Either+LocallyDereferenceable.swift",
        "Either/Either+Summarizable.swift",
        "Either/Either+Validatable.swift",
        "Encoding and Decoding Errors/DocumentDecodingError.swift",
        "Encoding and Decoding Errors/OperationDecodingError.swift",
        "Encoding and Decoding Errors/PathDecodingError.swift",
        "Encoding and Decoding Errors/ResponseDecodingError.swift",
        "Example.swift",
        "ExternalDocumentation.swift",
        "ExternalLoader.swift",
        "Header/DereferencedHeader.swift",
        "Header/Header.swift",
        "JSONReference.swift",
        "Link.swift",
        "OpenAPI.swift",
        "Operation/DereferencedOperation.swift",
        "Operation/Operation.swift",
        "Operation/ResolvedEndpoint.swift",
        "Parameter/DereferencedParameter.swift",
        "Parameter/DereferencedSchemaContext.swift",
        "Parameter/Parameter.swift",
        "Parameter/ParameterContext.swift",
        "Parameter/ParameterSchemaContext.swift",
        "Path Item/DereferencedPathItem.swift",
        "Path Item/PathItem.swift",
        "Path Item/ResolvedRoute.swift",
        "Request/DereferencedRequest.swift",
        "Request/Request.swift",
        "Response/DereferencedResponse.swift",
        "Response/Response.swift",
        "RuntimeExpression.swift",
        "Schema Conformances/SchemaProtocols.swift",
        "Schema Conformances/SwiftPrimitiveTypes+OpenAPI.swift",
        "Schema Object/DereferencedJSONSchema.swift",
        "Schema Object/JSONSchema+Combining.swift",
        "Schema Object/JSONSchema.swift",
        "Schema Object/JSONSchemaContext.swift",
        "Schema Object/SimplifiedJSONSchema.swift",
        "Schema Object/TypesAndFormats.swift",
        "Security/DereferencedSecurityRequirement.swift",
        "Security/SecurityScheme.swift",
        "Server.swift",
        "Tag.swift",
        "URLTemplate+Validatable.swift",
        "Utility/Array+ExternallyDereferenceable.swift",
        "Utility/Container+DecodeURLAsString.swift",
        "Utility/Dictionary+ExternallyDereferenceable.swift",
        "Utility/Optional+ExternallyDereferenceable.swift",
        "Utility/OrderedDictionary+ExternallyDereferenceable.swift",
        "Utility/OrderedDictionry+LocallyDereferenceable.swift",
        "Validator/Validation+Builtins.swift",
        "Validator/Validation.swift",
        "Validator/Validator+Convenience.swift",
        "Validator/Validator.swift",
        "XML.swift",
        "_CoreReExport.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKitCore"
      ],
      "type" : "library"
    },
    {
      "c99name" : "EitherTests",
      "module_type" : "SwiftTarget",
      "name" : "EitherTests",
      "path" : "Tests/EitherTests",
      "sources" : [
        "EitherTests.swift",
        "EitherTypeErasedValueTests.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKitCore"
      ],
      "type" : "test"
    },
    {
      "c99name" : "AnyCodableTests",
      "module_type" : "SwiftTarget",
      "name" : "AnyCodableTests",
      "path" : "Tests/AnyCodableTests",
      "sources" : [
        "AnyCodableTests.swift",
        "TestHelpers.swift"
      ],
      "target_dependencies" : [
        "OpenAPIKitCore"
      ],
      "type" : "test"
    }
  ],
  "tools_version" : "5.8"
}
basic-6.2-latest: Pulling from finestructure/spi-images
Digest: sha256:c6c8e08ea30bca759adf847aac87887750120fe9b6eaea09f5af37036a41e81a
Status: Image is up to date for registry.gitlab.com/finestructure/spi-images:basic-6.2-latest
Done.