The Swift Package Index logo.Swift Package Index

Build Information

Successful build of JSONSchemaForm, reference main (a4feb4), with Swift 6.1 for macOS (SPM) on 19 Feb 2026 16:26:45 UTC.

Swift 6 data race errors: 0

Build Command

env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats

Build Log

========================================
RunAll
========================================
Builder version: 4.68.0
Interrupt handler set up.
========================================
Checkout
========================================
Clone URL: https://github.com/sirily11/swift-jsonschema-form.git
Reference: main
Initialized empty Git repository in /Users/admin/builder/spi-builder-workspace/.git/
From https://github.com/sirily11/swift-jsonschema-form
 * branch            main       -> FETCH_HEAD
 * [new branch]      main       -> origin/main
HEAD is now at a4feb40 fix: enum field default selection empty (#21)
Cloned https://github.com/sirily11/swift-jsonschema-form.git
Revision (git rev-parse @):
a4feb400a0bca57bc39b8ea95544c71aa768fbfd
SUCCESS checkout https://github.com/sirily11/swift-jsonschema-form.git at main
========================================
Build
========================================
Selected platform:         macosSpm
Swift version:             6.1
Building package at path:  $PWD
https://github.com/sirily11/swift-jsonschema-form.git
https://github.com/sirily11/swift-jsonschema-form.git
{
  "dependencies" : [
    {
      "identity" : "swift-json-schema",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/sirily11/swift-json-schema"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections"
    },
    {
      "identity" : "viewinspector",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.10.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nalexn/ViewInspector"
    }
  ],
  "manifest_display_name" : "JSONSchemaForm",
  "name" : "JSONSchemaForm",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "15.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    }
  ],
  "products" : [
    {
      "name" : "JSONSchemaForm",
      "targets" : [
        "JSONSchemaForm"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "JSONSchemaValidator",
      "targets" : [
        "JSONSchemaValidator"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "JSONSchemaValidatorTests",
      "module_type" : "SwiftTarget",
      "name" : "JSONSchemaValidatorTests",
      "path" : "Sources/JSONSchemaValidatorTests",
      "sources" : [
        "ArrayValidatorTests.swift",
        "CombinatorsValidatorTests.swift",
        "EnumValidatorTests.swift",
        "FormatValidatorTests.swift",
        "IntegrationTests.swift",
        "JSONSchemaTypeTests.swift",
        "NumberValidatorTests.swift",
        "ObjectValidatorTests.swift",
        "StringValidatorTests.swift",
        "TypeValidatorTests.swift"
      ],
      "target_dependencies" : [
        "JSONSchemaValidator"
      ],
      "type" : "test"
    },
    {
      "c99name" : "JSONSchemaValidator",
      "module_type" : "SwiftTarget",
      "name" : "JSONSchemaValidator",
      "path" : "Sources/JSONSchemaValidator",
      "product_dependencies" : [
        "JSONSchema"
      ],
      "product_memberships" : [
        "JSONSchemaForm",
        "JSONSchemaValidator"
      ],
      "sources" : [
        "JSONSchemaValidating.swift",
        "JSONSchemaValidator.swift",
        "ValidationError.swift",
        "Validators/ArrayValidator.swift",
        "Validators/CombinatorsValidator.swift",
        "Validators/EnumValidator.swift",
        "Validators/FormatValidator.swift",
        "Validators/NumberValidator.swift",
        "Validators/ObjectValidator.swift",
        "Validators/StringValidator.swift",
        "Validators/TypeValidator.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "JSONSchemaFormTests",
      "module_type" : "SwiftTarget",
      "name" : "JSONSchemaFormTests",
      "path" : "Sources/JSONSchemaFormTests",
      "product_dependencies" : [
        "ViewInspector"
      ],
      "sources" : [
        "FieldTemplateTests.swift",
        "FormDataEncodableTests.swift",
        "JSONSchemaForm+AllOfTests.swift",
        "JSONSchemaForm+ArrayTests.swift",
        "JSONSchemaForm+BooleanTests.swift",
        "JSONSchemaForm+ControllerTests.swift",
        "JSONSchemaForm+DefaultWithRefsTests.swift",
        "JSONSchemaForm+EnumTests.swift",
        "JSONSchemaForm+FieldOrderTests.swift",
        "JSONSchemaForm+IfThenElseTests.swift",
        "JSONSchemaForm+NumberTests.swift",
        "JSONSchemaForm+ObjectTests.swift",
        "JSONSchemaForm+OneOfTests.swift",
        "JSONSchemaForm+SchemaTests.swift",
        "JSONSchemaForm+StringTests.swift",
        "JSONSchemaForm+StringWidgetTests.swift",
        "JSONSchemaFormControllerTests.swift",
        "TestSchema.swift"
      ],
      "target_dependencies" : [
        "JSONSchemaForm"
      ],
      "type" : "test"
    },
    {
      "c99name" : "JSONSchemaForm",
      "module_type" : "SwiftTarget",
      "name" : "JSONSchemaForm",
      "path" : "Sources/JSONSchemaForm",
      "product_dependencies" : [
        "JSONSchema",
        "Collections"
      ],
      "product_memberships" : [
        "JSONSchemaForm"
      ],
      "sources" : [
        "Controller/FormContext.swift",
        "Controller/JSONSchemaFormController.swift",
        "Fields/AllOfField.swift",
        "Fields/AnyOfField.swift",
        "Fields/ArrayField.swift",
        "Fields/BooleanField.swift",
        "Fields/DescriptionField.swift",
        "Fields/EnumField.swift",
        "Fields/Fields.swift",
        "Fields/InvalidValueType.swift",
        "Fields/MultiSchemaField.swift",
        "Fields/NullField.swift",
        "Fields/NumberField.swift",
        "Fields/ObjectField.swift",
        "Fields/OneOfField.swift",
        "Fields/SchemaField.swift",
        "Fields/StringField.swift",
        "Fields/TitleField.swift",
        "Fields/UnsupportedField.swift",
        "JSONSchemaForm.swift",
        "Registry.swift",
        "Templates/ArrayFieldDescriptionTemplate.swift",
        "Templates/ArrayFieldItemTemplate.swift",
        "Templates/ArrayFieldTemplate.swift",
        "Templates/ArrayFieldTitleTemplate.swift",
        "Templates/BaseInputTemplate.swift",
        "Templates/ButtonTemplates/AddButton.swift",
        "Templates/ButtonTemplates/ButtonTemplates.swift",
        "Templates/ButtonTemplates/IconButton.swift",
        "Templates/ButtonTemplates/SubmitButton.swift",
        "Templates/DescriptionFieldTemplate.swift",
        "Templates/ErrorListTemplate.swift",
        "Templates/FieldErrorTemplate.swift",
        "Templates/FieldHelpTemplate.swift",
        "Templates/FieldTemplate.swift",
        "Templates/ObjectFieldTemplate.swift",
        "Templates/RegistryTemplates.swift",
        "Templates/TemplateProps.swift",
        "Templates/Templates.swift",
        "Templates/TitleFieldTemplate.swift",
        "Templates/UnsupportedFieldTemplate.swift",
        "Templates/WrapIfAdditionalTemplate.swift",
        "Theme.swift",
        "Types/EnumValue.swift",
        "Types/FormData.swift",
        "Utils/ConditionEvaluator.swift",
        "Utils/PropertyOrderExtractor.swift",
        "Utils/RegistryUtils.swift",
        "Utils/SchemaMerger.swift",
        "Utils/SchemaPreprocessor.swift",
        "Utils/SchemaUtils.swift",
        "Utils/UISchemaUtils.swift",
        "Utils/Validation.swift"
      ],
      "target_dependencies" : [
        "JSONSchemaValidator"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Running build ...
env DEVELOPER_DIR=/Applications/Xcode-16.3.0.app xcrun swift build --arch arm64 -Xswiftc -Xfrontend -Xswiftc -stats-output-dir -Xswiftc -Xfrontend -Xswiftc .stats
Building for debugging...
[0/12] Write sources
[11/12] Write swift-version-2F0A5646E1D333AE.txt
[13/40] Compiling InternalCollectionsUtilities UnsafeMutableRawBufferPointer+Extras.swift
[14/41] Compiling InternalCollectionsUtilities _UniqueCollection.swift
[15/41] Compiling InternalCollectionsUtilities Debugging.swift
[16/41] Compiling InternalCollectionsUtilities Descriptions.swift
[17/41] Compiling InternalCollectionsUtilities LifetimeOverride.swift
[18/41] Compiling InternalCollectionsUtilities UnsafeMutableBufferPointer+Extras.swift
[19/41] Compiling InternalCollectionsUtilities RandomAccessCollection+Offsets.swift
[20/41] Compiling InternalCollectionsUtilities UnsafeBufferPointer+Extras.swift
[21/41] Compiling InternalCollectionsUtilities UnsafeRawBufferPointer+Extras.swift
[22/41] Compiling InternalCollectionsUtilities UInt+first and last set bit.swift
[23/41] Compiling InternalCollectionsUtilities UInt+reversed.swift
[24/41] Compiling InternalCollectionsUtilities _UnsafeBitSet+Index.swift
[25/41] Compiling InternalCollectionsUtilities _UnsafeBitSet+_Word.swift
[26/41] Emitting module InternalCollectionsUtilities
[27/41] Compiling InternalCollectionsUtilities FixedWidthInteger+roundUpToPowerOfTwo.swift
[28/41] Compiling InternalCollectionsUtilities Integer rank.swift
[29/41] Compiling InternalCollectionsUtilities _UnsafeBitSet.swift
[30/41] Compiling InternalCollectionsUtilities _SortedCollection.swift
[31/323] Compiling HashTreeCollections _Bucket.swift
[32/323] Compiling HashTreeCollections _Hash.swift
[33/324] Compiling DequeModule _DequeBufferHeader.swift
[34/324] Compiling HeapModule _HeapNode.swift
[35/324] Compiling DequeModule _DequeBuffer.swift
[36/324] Compiling HeapModule Heap.swift
[37/324] Compiling DequeModule _DequeSlot.swift
[38/324] Compiling HashTreeCollections _HashLevel.swift
[39/324] Compiling HashTreeCollections _HashNode+Builder.swift
[40/324] Compiling HeapModule Heap+Descriptions.swift
[41/324] Compiling HeapModule Heap+Invariants.swift
[42/324] Compiling HeapModule Heap+ExpressibleByArrayLiteral.swift
[43/324] Compiling HeapModule Heap+UnsafeHandle.swift
[44/324] Emitting module HeapModule
[45/324] Compiling HashTreeCollections _HashNode+Debugging.swift
[46/324] Compiling HashTreeCollections _HashNode+Initializers.swift
[47/324] Compiling HashTreeCollections _UnmanagedHashNode.swift
[48/324] Compiling HashTreeCollections _UnsafePath.swift
[49/324] Compiling HashTreeCollections TreeDictionary+Codable.swift
[50/324] Compiling HashTreeCollections TreeDictionary+Collection.swift
[51/324] Compiling HashTreeCollections TreeDictionary+CustomReflectable.swift
[52/324] Compiling HashTreeCollections TreeDictionary+Debugging.swift
[53/330] Compiling DequeModule _UnsafeWrappedBuffer.swift
[54/330] Compiling HashTreeCollections _HashNode+Structural union.swift
[55/330] Compiling HashTreeCollections _HashNode+Subtree Insertions.swift
[56/330] Compiling HashTreeCollections _HashNode+Subtree Modify.swift
[57/330] Compiling HashTreeCollections _HashNode+Subtree Removals.swift
[58/330] Compiling HashTreeCollections _HashNode+UnsafeHandle.swift
[59/330] Compiling HashTreeCollections _HashNode.swift
[60/335] Compiling HashTreeCollections _HashNodeHeader.swift
[61/335] Compiling HashTreeCollections _HashSlot.swift
[62/335] Compiling HashTreeCollections _HashStack.swift
[63/335] Compiling HashTreeCollections _HashTreeIterator.swift
[64/335] Compiling HashTreeCollections _HashTreeStatistics.swift
[65/335] Compiling HashTreeCollections _RawHashNode+UnsafeHandle.swift
[66/335] Compiling HashTreeCollections _RawHashNode.swift
[72/335] Compiling HashTreeCollections TreeDictionary+Keys.swift
[73/335] Compiling HashTreeCollections TreeDictionary+MapValues.swift
[74/335] Compiling HashTreeCollections TreeDictionary+Merge.swift
[75/335] Compiling HashTreeCollections TreeDictionary+Sendable.swift
[76/335] Compiling HashTreeCollections TreeDictionary+Sequence.swift
[77/335] Compiling BitCollections BitSet.swift
[78/335] Compiling HashTreeCollections TreeDictionary+Descriptions.swift
[79/335] Compiling HashTreeCollections TreeDictionary+Equatable.swift
[80/335] Compiling HashTreeCollections TreeDictionary+ExpressibleByDictionaryLiteral.swift
[81/335] Compiling HashTreeCollections TreeDictionary+Filter.swift
[82/335] Compiling HashTreeCollections TreeDictionary+Hashable.swift
[83/335] Compiling HashTreeCollections TreeDictionary+Initializers.swift
[84/335] Compiling _RopeModule Rope+MutatingForEach.swift
[85/335] Compiling _RopeModule Rope+_Node.swift
[86/335] Compiling _RopeModule Rope+_Storage.swift
[87/335] Compiling _RopeModule Rope+_UnmanagedLeaf.swift
[88/335] Compiling _RopeModule Rope+_UnsafeHandle.swift
[89/335] Compiling _RopeModule Rope.swift
[90/335] Compiling _RopeModule RopeElement.swift
[91/335] Compiling _RopeModule RopeMetric.swift
[92/335] Compiling HashTreeCollections TreeSet+SetAlgebra basics.swift
[93/335] Compiling HashTreeCollections TreeSet+SetAlgebra formIntersection.swift
[94/335] Compiling HashTreeCollections TreeSet+SetAlgebra formSymmetricDifference.swift
[95/335] Compiling HashTreeCollections TreeSet+SetAlgebra formUnion.swift
[96/335] Compiling HashTreeCollections TreeSet+SetAlgebra intersection.swift
[97/335] Compiling HashTreeCollections TreeSet+SetAlgebra isDisjoint.swift
[98/335] Compiling HashTreeCollections TreeSet+SetAlgebra isEqualSet.swift
[99/335] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSubset.swift
[100/343] Compiling HashTreeCollections _HashNode+Invariants.swift
[101/343] Compiling HashTreeCollections _HashNode+Lookups.swift
[102/343] Compiling HashTreeCollections _HashNode+Primitive Insertions.swift
[103/343] Compiling HashTreeCollections _HashNode+Primitive Removals.swift
[109/343] Compiling HashTreeCollections _HashNode+Primitive Replacement.swift
[110/343] Compiling HashTreeCollections _AncestorHashSlots.swift
[111/343] Compiling HashTreeCollections _Bitmap.swift
[134/343] Compiling BitCollections Range+Utilities.swift
[135/343] Compiling BitCollections Slice+Utilities.swift
[136/343] Compiling BitCollections UInt+Tricks.swift
[137/343] Compiling BitCollections _Word.swift
[138/343] Compiling OrderedCollections OrderedSet.swift
[139/343] Compiling OrderedCollections _UnsafeBitset.swift
[140/343] Compiling HashTreeCollections _HashNode+Structural isEqualSet.swift
[141/343] Compiling HashTreeCollections _HashNode+Structural isSubset.swift
[142/343] Compiling HashTreeCollections _HashNode+Structural mapValues.swift
[143/343] Compiling HashTreeCollections _HashNode+Structural merge.swift
[144/343] Compiling HashTreeCollections _HashNode+Structural subtracting.swift
[145/343] Compiling HashTreeCollections _HashNode+Structural symmetricDifference.swift
[153/343] Compiling HashTreeCollections _HashNode+Storage.swift
[154/343] Compiling HashTreeCollections _HashNode+Structural compactMapValues.swift
[155/343] Compiling HashTreeCollections _HashNode+Structural filter.swift
[156/343] Compiling HashTreeCollections _HashNode+Structural intersection.swift
[157/343] Compiling HashTreeCollections _HashNode+Structural isDisjoint.swift
[175/343] Emitting module DequeModule
[177/343] Emitting module BitCollections
[195/343] Compiling HashTreeCollections TreeSet+SetAlgebra isStrictSuperset.swift
[196/343] Compiling HashTreeCollections TreeSet+SetAlgebra isSubset.swift
[197/343] Compiling HashTreeCollections TreeSet+SetAlgebra isSuperset.swift
[198/343] Compiling HashTreeCollections TreeSet+SetAlgebra subtract.swift
[199/343] Compiling HashTreeCollections TreeSet+SetAlgebra subtracting.swift
[200/343] Compiling HashTreeCollections TreeSet+SetAlgebra symmetricDifference.swift
[201/343] Compiling HashTreeCollections TreeSet+SetAlgebra union.swift
[202/343] Compiling HashTreeCollections TreeSet.swift
[305/350] Emitting module OrderedCollections
[315/350] Emitting module _RopeModule
[316/350] Compiling _RopeModule Rope+Remove.swift
[317/350] Compiling _RopeModule Rope+RemoveSubrange.swift
[318/350] Compiling _RopeModule Rope+Split.swift
[319/350] Compiling _RopeModule Optional Utilities.swift
[320/350] Compiling _RopeModule String Utilities.swift
[321/350] Compiling _RopeModule String.Index+ABI.swift
[322/350] Compiling _RopeModule _CharacterRecognizer.swift
[339/350] Emitting module HashTreeCollections
[340/352] Compiling Collections Collections.swift
[341/352] Emitting module Collections
[342/352] Compiling JSONSchema JSONSchema+Object.swift
[343/352] Compiling JSONSchema JSONSchema+Null.swift
[344/352] Compiling JSONSchema JSONSchema+Number.swift
[345/352] Compiling JSONSchema JSONSchema+String.swift
[346/352] Compiling JSONSchema JSONSchema+Boolean.swift
[347/352] Compiling JSONSchema JSONSchema+Enum.swift
[348/352] Compiling JSONSchema JSONSchema+Integer.swift
[349/353] Compiling JSONSchema JSONSchema+Combined.swift
[350/353] Emitting module JSONSchema
[353/353] Compiling JSONSchema JSONSchema.swift
[354/364] Compiling JSONSchemaValidator ObjectValidator.swift
[355/364] Compiling JSONSchemaValidator CombinatorsValidator.swift
[356/364] Compiling JSONSchemaValidator StringValidator.swift
[357/364] Compiling JSONSchemaValidator NumberValidator.swift
[358/365] Compiling JSONSchemaValidator ValidationError.swift
[359/365] Emitting module JSONSchemaValidator
[360/365] Compiling JSONSchemaValidator EnumValidator.swift
[361/365] Compiling JSONSchemaValidator FormatValidator.swift
[362/365] Compiling JSONSchemaValidator ArrayValidator.swift
[363/365] Compiling JSONSchemaValidator JSONSchemaValidating.swift
[364/365] Compiling JSONSchemaValidator JSONSchemaValidator.swift
[365/365] Compiling JSONSchemaValidator TypeValidator.swift
[366/414] Emitting module JSONSchemaForm
[367/419] Compiling JSONSchemaForm SchemaMerger.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Utils/SchemaUtils.swift:91:9: warning: variable 'idSchema' was never mutated; consider changing to 'let' constant
 89 | /// Creates an ID schema based on the JSON schema structure
 90 | func createIdSchema(schema: JSONSchema, id: String, formData: Any?) -> [String: Any] {
 91 |     var idSchema: [String: Any] = ["$id": id]
    |         `- warning: variable 'idSchema' was never mutated; consider changing to 'let' constant
 92 |
 93 |     // // For object schemas, create ids for each property
[368/419] Compiling JSONSchemaForm SchemaPreprocessor.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Utils/SchemaUtils.swift:91:9: warning: variable 'idSchema' was never mutated; consider changing to 'let' constant
 89 | /// Creates an ID schema based on the JSON schema structure
 90 | func createIdSchema(schema: JSONSchema, id: String, formData: Any?) -> [String: Any] {
 91 |     var idSchema: [String: Any] = ["$id": id]
    |         `- warning: variable 'idSchema' was never mutated; consider changing to 'let' constant
 92 |
 93 |     // // For object schemas, create ids for each property
[369/419] Compiling JSONSchemaForm SchemaUtils.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Utils/SchemaUtils.swift:91:9: warning: variable 'idSchema' was never mutated; consider changing to 'let' constant
 89 | /// Creates an ID schema based on the JSON schema structure
 90 | func createIdSchema(schema: JSONSchema, id: String, formData: Any?) -> [String: Any] {
 91 |     var idSchema: [String: Any] = ["$id": id]
    |         `- warning: variable 'idSchema' was never mutated; consider changing to 'let' constant
 92 |
 93 |     // // For object schemas, create ids for each property
[370/419] Compiling JSONSchemaForm UISchemaUtils.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Utils/SchemaUtils.swift:91:9: warning: variable 'idSchema' was never mutated; consider changing to 'let' constant
 89 | /// Creates an ID schema based on the JSON schema structure
 90 | func createIdSchema(schema: JSONSchema, id: String, formData: Any?) -> [String: Any] {
 91 |     var idSchema: [String: Any] = ["$id": id]
    |         `- warning: variable 'idSchema' was never mutated; consider changing to 'let' constant
 92 |
 93 |     // // For object schemas, create ids for each property
[371/419] Compiling JSONSchemaForm Validation.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Utils/SchemaUtils.swift:91:9: warning: variable 'idSchema' was never mutated; consider changing to 'let' constant
 89 | /// Creates an ID schema based on the JSON schema structure
 90 | func createIdSchema(schema: JSONSchema, id: String, formData: Any?) -> [String: Any] {
 91 |     var idSchema: [String: Any] = ["$id": id]
    |         `- warning: variable 'idSchema' was never mutated; consider changing to 'let' constant
 92 |
 93 |     // // For object schemas, create ids for each property
[372/419] Compiling JSONSchemaForm IconButton.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Templates/DescriptionFieldTemplate.swift:14:46: warning: conditional cast from 'String' to 'String' always succeeds
12 |     var body: some View {
13 |         if let description = description {
14 |             if let description = description as? String {
   |                                              `- warning: conditional cast from 'String' to 'String' always succeeds
15 |                 Text(description)
16 |                     .id(id)
[373/419] Compiling JSONSchemaForm SubmitButton.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Templates/DescriptionFieldTemplate.swift:14:46: warning: conditional cast from 'String' to 'String' always succeeds
12 |     var body: some View {
13 |         if let description = description {
14 |             if let description = description as? String {
   |                                              `- warning: conditional cast from 'String' to 'String' always succeeds
15 |                 Text(description)
16 |                     .id(id)
[374/419] Compiling JSONSchemaForm DescriptionFieldTemplate.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Templates/DescriptionFieldTemplate.swift:14:46: warning: conditional cast from 'String' to 'String' always succeeds
12 |     var body: some View {
13 |         if let description = description {
14 |             if let description = description as? String {
   |                                              `- warning: conditional cast from 'String' to 'String' always succeeds
15 |                 Text(description)
16 |                     .id(id)
[375/419] Compiling JSONSchemaForm ErrorListTemplate.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Templates/DescriptionFieldTemplate.swift:14:46: warning: conditional cast from 'String' to 'String' always succeeds
12 |     var body: some View {
13 |         if let description = description {
14 |             if let description = description as? String {
   |                                              `- warning: conditional cast from 'String' to 'String' always succeeds
15 |                 Text(description)
16 |                     .id(id)
[376/419] Compiling JSONSchemaForm FieldErrorTemplate.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Templates/DescriptionFieldTemplate.swift:14:46: warning: conditional cast from 'String' to 'String' always succeeds
12 |     var body: some View {
13 |         if let description = description {
14 |             if let description = description as? String {
   |                                              `- warning: conditional cast from 'String' to 'String' always succeeds
15 |                 Text(description)
16 |                     .id(id)
[377/419] Compiling JSONSchemaForm Templates.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Templates/WrapIfAdditionalTemplate.swift:33:18: warning: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use `onChange` with a two or zero parameter action closure instead.
31 |                 .textFieldStyle(RoundedBorderTextFieldStyle())
32 |                 .frame(maxWidth: 200)
33 |                 .onChange(of: label) { newValue in
   |                  `- warning: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use `onChange` with a two or zero parameter action closure instead.
34 |                     onKeyChange(newValue)()
35 |                 }
[378/419] Compiling JSONSchemaForm TitleFieldTemplate.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Templates/WrapIfAdditionalTemplate.swift:33:18: warning: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use `onChange` with a two or zero parameter action closure instead.
31 |                 .textFieldStyle(RoundedBorderTextFieldStyle())
32 |                 .frame(maxWidth: 200)
33 |                 .onChange(of: label) { newValue in
   |                  `- warning: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use `onChange` with a two or zero parameter action closure instead.
34 |                     onKeyChange(newValue)()
35 |                 }
[379/419] Compiling JSONSchemaForm UnsupportedFieldTemplate.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Templates/WrapIfAdditionalTemplate.swift:33:18: warning: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use `onChange` with a two or zero parameter action closure instead.
31 |                 .textFieldStyle(RoundedBorderTextFieldStyle())
32 |                 .frame(maxWidth: 200)
33 |                 .onChange(of: label) { newValue in
   |                  `- warning: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use `onChange` with a two or zero parameter action closure instead.
34 |                     onKeyChange(newValue)()
35 |                 }
[380/419] Compiling JSONSchemaForm WrapIfAdditionalTemplate.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Templates/WrapIfAdditionalTemplate.swift:33:18: warning: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use `onChange` with a two or zero parameter action closure instead.
31 |                 .textFieldStyle(RoundedBorderTextFieldStyle())
32 |                 .frame(maxWidth: 200)
33 |                 .onChange(of: label) { newValue in
   |                  `- warning: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use `onChange` with a two or zero parameter action closure instead.
34 |                     onKeyChange(newValue)()
35 |                 }
[381/419] Compiling JSONSchemaForm Theme.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Templates/WrapIfAdditionalTemplate.swift:33:18: warning: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use `onChange` with a two or zero parameter action closure instead.
31 |                 .textFieldStyle(RoundedBorderTextFieldStyle())
32 |                 .frame(maxWidth: 200)
33 |                 .onChange(of: label) { newValue in
   |                  `- warning: 'onChange(of:perform:)' was deprecated in macOS 14.0: Use `onChange` with a two or zero parameter action closure instead.
34 |                     onKeyChange(newValue)()
35 |                 }
[382/419] Compiling JSONSchemaForm FieldHelpTemplate.swift
[383/419] Compiling JSONSchemaForm FieldTemplate.swift
[384/419] Compiling JSONSchemaForm ObjectFieldTemplate.swift
[385/419] Compiling JSONSchemaForm RegistryTemplates.swift
[386/419] Compiling JSONSchemaForm TemplateProps.swift
[387/419] Compiling JSONSchemaForm DescriptionField.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:167:64: warning: expression implicitly coerced from 'Any?' to 'Any'
165 |         .id("\(id)_enum_field")
166 |         .onChange(of: value) { _, newValue in
167 |             self.formData.wrappedValue = .fromValueType(value: newValue.value)
    |                                                                |        |- note: provide a default value to avoid this warning
    |                                                                |        |- note: force-unwrap the value to avoid this warning
    |                                                                |        `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                                `- warning: expression implicitly coerced from 'Any?' to 'Any'
168 |         }
169 |     }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:201:50: warning: expression implicitly coerced from 'Any?' to 'Any'
199 |                         Text(option.displayName)
200 |                             .tag(option)
201 |                             .disabled(isDisabled(option.value))
    |                                                  |      |- note: provide a default value to avoid this warning
    |                                                  |      |- note: force-unwrap the value to avoid this warning
    |                                                  |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                  `- warning: expression implicitly coerced from 'Any?' to 'Any'
202 |                     }
203 |                 } label: {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:238:58: warning: expression implicitly coerced from 'Any?' to 'Any'
236 |                     } label: {
237 |                         HStack {
238 |                             Image(systemName: isSelected(option.value) ? "circle.fill" : "circle")
    |                                                          |      |- note: provide a default value to avoid this warning
    |                                                          |      |- note: force-unwrap the value to avoid this warning
    |                                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
239 |                             Text(option.displayName)
240 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:244:42: warning: expression implicitly coerced from 'Any?' to 'Any'
242 |                     }
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
    |                                          |      |- note: provide a default value to avoid this warning
    |                                          |      |- note: force-unwrap the value to avoid this warning
    |                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
246 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:245:41: warning: expression implicitly coerced from 'Any?' to 'Any'
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
    |                                         |      |- note: provide a default value to avoid this warning
    |                                         |      |- note: force-unwrap the value to avoid this warning
    |                                         |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                         `- warning: expression implicitly coerced from 'Any?' to 'Any'
246 |                 }
247 |             }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:254:44: warning: cast from 'EnumValue' to unrelated type 'String' always fails
252 |     private func isSelected(_ value: Any) -> Bool {
253 |         let selectedValue = selection.wrappedValue
254 |         if let selectedStr = selectedValue as? String,
    |                                            `- warning: cast from 'EnumValue' to unrelated type 'String' always fails
255 |             let valueStr = value as? String
256 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:258:52: warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
256 |         {
257 |             return selectedStr == valueStr
258 |         } else if let selectedBool = selectedValue as? Bool,
    |                                                    `- warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
259 |             let valueBool = value as? Bool
260 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:262:51: warning: cast from 'EnumValue' to unrelated type 'Double' always fails
260 |         {
261 |             return selectedBool == valueBool
262 |         } else if let selectedNum = selectedValue as? Double,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Double' always fails
263 |             let valueNum = value as? Double
264 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:266:51: warning: cast from 'EnumValue' to unrelated type 'Int' always fails
264 |         {
265 |             return selectedNum == valueNum
266 |         } else if let selectedInt = selectedValue as? Int,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Int' always fails
267 |             let valueInt = value as? Int
268 |         {
[388/419] Compiling JSONSchemaForm EnumField.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:167:64: warning: expression implicitly coerced from 'Any?' to 'Any'
165 |         .id("\(id)_enum_field")
166 |         .onChange(of: value) { _, newValue in
167 |             self.formData.wrappedValue = .fromValueType(value: newValue.value)
    |                                                                |        |- note: provide a default value to avoid this warning
    |                                                                |        |- note: force-unwrap the value to avoid this warning
    |                                                                |        `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                                `- warning: expression implicitly coerced from 'Any?' to 'Any'
168 |         }
169 |     }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:201:50: warning: expression implicitly coerced from 'Any?' to 'Any'
199 |                         Text(option.displayName)
200 |                             .tag(option)
201 |                             .disabled(isDisabled(option.value))
    |                                                  |      |- note: provide a default value to avoid this warning
    |                                                  |      |- note: force-unwrap the value to avoid this warning
    |                                                  |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                  `- warning: expression implicitly coerced from 'Any?' to 'Any'
202 |                     }
203 |                 } label: {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:238:58: warning: expression implicitly coerced from 'Any?' to 'Any'
236 |                     } label: {
237 |                         HStack {
238 |                             Image(systemName: isSelected(option.value) ? "circle.fill" : "circle")
    |                                                          |      |- note: provide a default value to avoid this warning
    |                                                          |      |- note: force-unwrap the value to avoid this warning
    |                                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
239 |                             Text(option.displayName)
240 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:244:42: warning: expression implicitly coerced from 'Any?' to 'Any'
242 |                     }
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
    |                                          |      |- note: provide a default value to avoid this warning
    |                                          |      |- note: force-unwrap the value to avoid this warning
    |                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
246 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:245:41: warning: expression implicitly coerced from 'Any?' to 'Any'
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
    |                                         |      |- note: provide a default value to avoid this warning
    |                                         |      |- note: force-unwrap the value to avoid this warning
    |                                         |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                         `- warning: expression implicitly coerced from 'Any?' to 'Any'
246 |                 }
247 |             }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:254:44: warning: cast from 'EnumValue' to unrelated type 'String' always fails
252 |     private func isSelected(_ value: Any) -> Bool {
253 |         let selectedValue = selection.wrappedValue
254 |         if let selectedStr = selectedValue as? String,
    |                                            `- warning: cast from 'EnumValue' to unrelated type 'String' always fails
255 |             let valueStr = value as? String
256 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:258:52: warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
256 |         {
257 |             return selectedStr == valueStr
258 |         } else if let selectedBool = selectedValue as? Bool,
    |                                                    `- warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
259 |             let valueBool = value as? Bool
260 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:262:51: warning: cast from 'EnumValue' to unrelated type 'Double' always fails
260 |         {
261 |             return selectedBool == valueBool
262 |         } else if let selectedNum = selectedValue as? Double,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Double' always fails
263 |             let valueNum = value as? Double
264 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:266:51: warning: cast from 'EnumValue' to unrelated type 'Int' always fails
264 |         {
265 |             return selectedNum == valueNum
266 |         } else if let selectedInt = selectedValue as? Int,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Int' always fails
267 |             let valueInt = value as? Int
268 |         {
[389/419] Compiling JSONSchemaForm Fields.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:167:64: warning: expression implicitly coerced from 'Any?' to 'Any'
165 |         .id("\(id)_enum_field")
166 |         .onChange(of: value) { _, newValue in
167 |             self.formData.wrappedValue = .fromValueType(value: newValue.value)
    |                                                                |        |- note: provide a default value to avoid this warning
    |                                                                |        |- note: force-unwrap the value to avoid this warning
    |                                                                |        `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                                `- warning: expression implicitly coerced from 'Any?' to 'Any'
168 |         }
169 |     }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:201:50: warning: expression implicitly coerced from 'Any?' to 'Any'
199 |                         Text(option.displayName)
200 |                             .tag(option)
201 |                             .disabled(isDisabled(option.value))
    |                                                  |      |- note: provide a default value to avoid this warning
    |                                                  |      |- note: force-unwrap the value to avoid this warning
    |                                                  |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                  `- warning: expression implicitly coerced from 'Any?' to 'Any'
202 |                     }
203 |                 } label: {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:238:58: warning: expression implicitly coerced from 'Any?' to 'Any'
236 |                     } label: {
237 |                         HStack {
238 |                             Image(systemName: isSelected(option.value) ? "circle.fill" : "circle")
    |                                                          |      |- note: provide a default value to avoid this warning
    |                                                          |      |- note: force-unwrap the value to avoid this warning
    |                                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
239 |                             Text(option.displayName)
240 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:244:42: warning: expression implicitly coerced from 'Any?' to 'Any'
242 |                     }
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
    |                                          |      |- note: provide a default value to avoid this warning
    |                                          |      |- note: force-unwrap the value to avoid this warning
    |                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
246 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:245:41: warning: expression implicitly coerced from 'Any?' to 'Any'
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
    |                                         |      |- note: provide a default value to avoid this warning
    |                                         |      |- note: force-unwrap the value to avoid this warning
    |                                         |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                         `- warning: expression implicitly coerced from 'Any?' to 'Any'
246 |                 }
247 |             }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:254:44: warning: cast from 'EnumValue' to unrelated type 'String' always fails
252 |     private func isSelected(_ value: Any) -> Bool {
253 |         let selectedValue = selection.wrappedValue
254 |         if let selectedStr = selectedValue as? String,
    |                                            `- warning: cast from 'EnumValue' to unrelated type 'String' always fails
255 |             let valueStr = value as? String
256 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:258:52: warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
256 |         {
257 |             return selectedStr == valueStr
258 |         } else if let selectedBool = selectedValue as? Bool,
    |                                                    `- warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
259 |             let valueBool = value as? Bool
260 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:262:51: warning: cast from 'EnumValue' to unrelated type 'Double' always fails
260 |         {
261 |             return selectedBool == valueBool
262 |         } else if let selectedNum = selectedValue as? Double,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Double' always fails
263 |             let valueNum = value as? Double
264 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:266:51: warning: cast from 'EnumValue' to unrelated type 'Int' always fails
264 |         {
265 |             return selectedNum == valueNum
266 |         } else if let selectedInt = selectedValue as? Int,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Int' always fails
267 |             let valueInt = value as? Int
268 |         {
[390/419] Compiling JSONSchemaForm InvalidValueType.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:167:64: warning: expression implicitly coerced from 'Any?' to 'Any'
165 |         .id("\(id)_enum_field")
166 |         .onChange(of: value) { _, newValue in
167 |             self.formData.wrappedValue = .fromValueType(value: newValue.value)
    |                                                                |        |- note: provide a default value to avoid this warning
    |                                                                |        |- note: force-unwrap the value to avoid this warning
    |                                                                |        `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                                `- warning: expression implicitly coerced from 'Any?' to 'Any'
168 |         }
169 |     }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:201:50: warning: expression implicitly coerced from 'Any?' to 'Any'
199 |                         Text(option.displayName)
200 |                             .tag(option)
201 |                             .disabled(isDisabled(option.value))
    |                                                  |      |- note: provide a default value to avoid this warning
    |                                                  |      |- note: force-unwrap the value to avoid this warning
    |                                                  |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                  `- warning: expression implicitly coerced from 'Any?' to 'Any'
202 |                     }
203 |                 } label: {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:238:58: warning: expression implicitly coerced from 'Any?' to 'Any'
236 |                     } label: {
237 |                         HStack {
238 |                             Image(systemName: isSelected(option.value) ? "circle.fill" : "circle")
    |                                                          |      |- note: provide a default value to avoid this warning
    |                                                          |      |- note: force-unwrap the value to avoid this warning
    |                                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
239 |                             Text(option.displayName)
240 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:244:42: warning: expression implicitly coerced from 'Any?' to 'Any'
242 |                     }
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
    |                                          |      |- note: provide a default value to avoid this warning
    |                                          |      |- note: force-unwrap the value to avoid this warning
    |                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
246 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:245:41: warning: expression implicitly coerced from 'Any?' to 'Any'
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
    |                                         |      |- note: provide a default value to avoid this warning
    |                                         |      |- note: force-unwrap the value to avoid this warning
    |                                         |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                         `- warning: expression implicitly coerced from 'Any?' to 'Any'
246 |                 }
247 |             }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:254:44: warning: cast from 'EnumValue' to unrelated type 'String' always fails
252 |     private func isSelected(_ value: Any) -> Bool {
253 |         let selectedValue = selection.wrappedValue
254 |         if let selectedStr = selectedValue as? String,
    |                                            `- warning: cast from 'EnumValue' to unrelated type 'String' always fails
255 |             let valueStr = value as? String
256 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:258:52: warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
256 |         {
257 |             return selectedStr == valueStr
258 |         } else if let selectedBool = selectedValue as? Bool,
    |                                                    `- warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
259 |             let valueBool = value as? Bool
260 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:262:51: warning: cast from 'EnumValue' to unrelated type 'Double' always fails
260 |         {
261 |             return selectedBool == valueBool
262 |         } else if let selectedNum = selectedValue as? Double,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Double' always fails
263 |             let valueNum = value as? Double
264 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:266:51: warning: cast from 'EnumValue' to unrelated type 'Int' always fails
264 |         {
265 |             return selectedNum == valueNum
266 |         } else if let selectedInt = selectedValue as? Int,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Int' always fails
267 |             let valueInt = value as? Int
268 |         {
[391/419] Compiling JSONSchemaForm MultiSchemaField.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:167:64: warning: expression implicitly coerced from 'Any?' to 'Any'
165 |         .id("\(id)_enum_field")
166 |         .onChange(of: value) { _, newValue in
167 |             self.formData.wrappedValue = .fromValueType(value: newValue.value)
    |                                                                |        |- note: provide a default value to avoid this warning
    |                                                                |        |- note: force-unwrap the value to avoid this warning
    |                                                                |        `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                                `- warning: expression implicitly coerced from 'Any?' to 'Any'
168 |         }
169 |     }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:201:50: warning: expression implicitly coerced from 'Any?' to 'Any'
199 |                         Text(option.displayName)
200 |                             .tag(option)
201 |                             .disabled(isDisabled(option.value))
    |                                                  |      |- note: provide a default value to avoid this warning
    |                                                  |      |- note: force-unwrap the value to avoid this warning
    |                                                  |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                  `- warning: expression implicitly coerced from 'Any?' to 'Any'
202 |                     }
203 |                 } label: {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:238:58: warning: expression implicitly coerced from 'Any?' to 'Any'
236 |                     } label: {
237 |                         HStack {
238 |                             Image(systemName: isSelected(option.value) ? "circle.fill" : "circle")
    |                                                          |      |- note: provide a default value to avoid this warning
    |                                                          |      |- note: force-unwrap the value to avoid this warning
    |                                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
239 |                             Text(option.displayName)
240 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:244:42: warning: expression implicitly coerced from 'Any?' to 'Any'
242 |                     }
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
    |                                          |      |- note: provide a default value to avoid this warning
    |                                          |      |- note: force-unwrap the value to avoid this warning
    |                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
246 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:245:41: warning: expression implicitly coerced from 'Any?' to 'Any'
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
    |                                         |      |- note: provide a default value to avoid this warning
    |                                         |      |- note: force-unwrap the value to avoid this warning
    |                                         |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                         `- warning: expression implicitly coerced from 'Any?' to 'Any'
246 |                 }
247 |             }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:254:44: warning: cast from 'EnumValue' to unrelated type 'String' always fails
252 |     private func isSelected(_ value: Any) -> Bool {
253 |         let selectedValue = selection.wrappedValue
254 |         if let selectedStr = selectedValue as? String,
    |                                            `- warning: cast from 'EnumValue' to unrelated type 'String' always fails
255 |             let valueStr = value as? String
256 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:258:52: warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
256 |         {
257 |             return selectedStr == valueStr
258 |         } else if let selectedBool = selectedValue as? Bool,
    |                                                    `- warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
259 |             let valueBool = value as? Bool
260 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:262:51: warning: cast from 'EnumValue' to unrelated type 'Double' always fails
260 |         {
261 |             return selectedBool == valueBool
262 |         } else if let selectedNum = selectedValue as? Double,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Double' always fails
263 |             let valueNum = value as? Double
264 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:266:51: warning: cast from 'EnumValue' to unrelated type 'Int' always fails
264 |         {
265 |             return selectedNum == valueNum
266 |         } else if let selectedInt = selectedValue as? Int,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Int' always fails
267 |             let valueInt = value as? Int
268 |         {
[392/419] Compiling JSONSchemaForm NullField.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:167:64: warning: expression implicitly coerced from 'Any?' to 'Any'
165 |         .id("\(id)_enum_field")
166 |         .onChange(of: value) { _, newValue in
167 |             self.formData.wrappedValue = .fromValueType(value: newValue.value)
    |                                                                |        |- note: provide a default value to avoid this warning
    |                                                                |        |- note: force-unwrap the value to avoid this warning
    |                                                                |        `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                                `- warning: expression implicitly coerced from 'Any?' to 'Any'
168 |         }
169 |     }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:201:50: warning: expression implicitly coerced from 'Any?' to 'Any'
199 |                         Text(option.displayName)
200 |                             .tag(option)
201 |                             .disabled(isDisabled(option.value))
    |                                                  |      |- note: provide a default value to avoid this warning
    |                                                  |      |- note: force-unwrap the value to avoid this warning
    |                                                  |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                  `- warning: expression implicitly coerced from 'Any?' to 'Any'
202 |                     }
203 |                 } label: {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:238:58: warning: expression implicitly coerced from 'Any?' to 'Any'
236 |                     } label: {
237 |                         HStack {
238 |                             Image(systemName: isSelected(option.value) ? "circle.fill" : "circle")
    |                                                          |      |- note: provide a default value to avoid this warning
    |                                                          |      |- note: force-unwrap the value to avoid this warning
    |                                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
239 |                             Text(option.displayName)
240 |                         }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:244:42: warning: expression implicitly coerced from 'Any?' to 'Any'
242 |                     }
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
    |                                          |      |- note: provide a default value to avoid this warning
    |                                          |      |- note: force-unwrap the value to avoid this warning
    |                                          |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                          `- warning: expression implicitly coerced from 'Any?' to 'Any'
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
246 |                 }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:245:41: warning: expression implicitly coerced from 'Any?' to 'Any'
243 |                     .buttonStyle(.plain)
244 |                     .disabled(isDisabled(option.value))
245 |                     .opacity(isDisabled(option.value) ? 0.5 : 1.0)
    |                                         |      |- note: provide a default value to avoid this warning
    |                                         |      |- note: force-unwrap the value to avoid this warning
    |                                         |      `- note: explicitly cast to 'Any' with 'as Any' to silence this warning
    |                                         `- warning: expression implicitly coerced from 'Any?' to 'Any'
246 |                 }
247 |             }
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:254:44: warning: cast from 'EnumValue' to unrelated type 'String' always fails
252 |     private func isSelected(_ value: Any) -> Bool {
253 |         let selectedValue = selection.wrappedValue
254 |         if let selectedStr = selectedValue as? String,
    |                                            `- warning: cast from 'EnumValue' to unrelated type 'String' always fails
255 |             let valueStr = value as? String
256 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:258:52: warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
256 |         {
257 |             return selectedStr == valueStr
258 |         } else if let selectedBool = selectedValue as? Bool,
    |                                                    `- warning: cast from 'EnumValue' to unrelated type 'Bool' always fails
259 |             let valueBool = value as? Bool
260 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:262:51: warning: cast from 'EnumValue' to unrelated type 'Double' always fails
260 |         {
261 |             return selectedBool == valueBool
262 |         } else if let selectedNum = selectedValue as? Double,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Double' always fails
263 |             let valueNum = value as? Double
264 |         {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/EnumField.swift:266:51: warning: cast from 'EnumValue' to unrelated type 'Int' always fails
264 |         {
265 |             return selectedNum == valueNum
266 |         } else if let selectedInt = selectedValue as? Int,
    |                                                   `- warning: cast from 'EnumValue' to unrelated type 'Int' always fails
267 |             let valueInt = value as? Int
268 |         {
[393/419] Compiling JSONSchemaForm FormContext.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Controller/JSONSchemaFormController.swift:255:38: warning: 'as' test is always true
253 |             isValid = true
254 |             return true
255 |         } catch let validationErrors as [ValidationError] {
    |                                      `- warning: 'as' test is always true
256 |             var processedErrors = validationErrors
257 |             if let transform = transformErrors {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/BooleanField.swift:46:34: warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 44 |     var body: some View {
 45 |         VStack(alignment: .leading) {
 46 |             if case .boolean(let value) = formData.wrappedValue {
    |                                  `- warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 47 |                 switch widget {
 48 |                 case "radio":
[394/419] Compiling JSONSchemaForm JSONSchemaFormController.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Controller/JSONSchemaFormController.swift:255:38: warning: 'as' test is always true
253 |             isValid = true
254 |             return true
255 |         } catch let validationErrors as [ValidationError] {
    |                                      `- warning: 'as' test is always true
256 |             var processedErrors = validationErrors
257 |             if let transform = transformErrors {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/BooleanField.swift:46:34: warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 44 |     var body: some View {
 45 |         VStack(alignment: .leading) {
 46 |             if case .boolean(let value) = formData.wrappedValue {
    |                                  `- warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 47 |                 switch widget {
 48 |                 case "radio":
[395/419] Compiling JSONSchemaForm AllOfField.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Controller/JSONSchemaFormController.swift:255:38: warning: 'as' test is always true
253 |             isValid = true
254 |             return true
255 |         } catch let validationErrors as [ValidationError] {
    |                                      `- warning: 'as' test is always true
256 |             var processedErrors = validationErrors
257 |             if let transform = transformErrors {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/BooleanField.swift:46:34: warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 44 |     var body: some View {
 45 |         VStack(alignment: .leading) {
 46 |             if case .boolean(let value) = formData.wrappedValue {
    |                                  `- warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 47 |                 switch widget {
 48 |                 case "radio":
[396/419] Compiling JSONSchemaForm AnyOfField.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Controller/JSONSchemaFormController.swift:255:38: warning: 'as' test is always true
253 |             isValid = true
254 |             return true
255 |         } catch let validationErrors as [ValidationError] {
    |                                      `- warning: 'as' test is always true
256 |             var processedErrors = validationErrors
257 |             if let transform = transformErrors {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/BooleanField.swift:46:34: warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 44 |     var body: some View {
 45 |         VStack(alignment: .leading) {
 46 |             if case .boolean(let value) = formData.wrappedValue {
    |                                  `- warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 47 |                 switch widget {
 48 |                 case "radio":
[397/419] Compiling JSONSchemaForm ArrayField.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Controller/JSONSchemaFormController.swift:255:38: warning: 'as' test is always true
253 |             isValid = true
254 |             return true
255 |         } catch let validationErrors as [ValidationError] {
    |                                      `- warning: 'as' test is always true
256 |             var processedErrors = validationErrors
257 |             if let transform = transformErrors {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/BooleanField.swift:46:34: warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 44 |     var body: some View {
 45 |         VStack(alignment: .leading) {
 46 |             if case .boolean(let value) = formData.wrappedValue {
    |                                  `- warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 47 |                 switch widget {
 48 |                 case "radio":
[398/419] Compiling JSONSchemaForm BooleanField.swift
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Controller/JSONSchemaFormController.swift:255:38: warning: 'as' test is always true
253 |             isValid = true
254 |             return true
255 |         } catch let validationErrors as [ValidationError] {
    |                                      `- warning: 'as' test is always true
256 |             var processedErrors = validationErrors
257 |             if let transform = transformErrors {
/Users/admin/builder/spi-builder-workspace/Sources/JSONSchemaForm/Fields/BooleanField.swift:46:34: warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 44 |     var body: some View {
 45 |         VStack(alignment: .leading) {
 46 |             if case .boolean(let value) = formData.wrappedValue {
    |                                  `- warning: immutable value 'value' was never used; consider replacing with '_' or removing it
 47 |                 switch widget {
 48 |                 case "radio":
[399/419] Compiling JSONSchemaForm EnumValue.swift
[400/419] Compiling JSONSchemaForm FormData.swift
[401/419] Compiling JSONSchemaForm ConditionEvaluator.swift
[402/419] Compiling JSONSchemaForm PropertyOrderExtractor.swift
[403/419] Compiling JSONSchemaForm RegistryUtils.swift
[404/419] Compiling JSONSchemaForm ArrayFieldTemplate.swift
[405/419] Compiling JSONSchemaForm ArrayFieldTitleTemplate.swift
[406/419] Compiling JSONSchemaForm BaseInputTemplate.swift
[407/419] Compiling JSONSchemaForm AddButton.swift
[408/419] Compiling JSONSchemaForm ButtonTemplates.swift
[409/419] Compiling JSONSchemaForm NumberField.swift
[410/419] Compiling JSONSchemaForm ObjectField.swift
[411/419] Compiling JSONSchemaForm OneOfField.swift
[412/419] Compiling JSONSchemaForm SchemaField.swift
[413/419] Compiling JSONSchemaForm StringField.swift
[414/419] Compiling JSONSchemaForm TitleField.swift
[415/419] Compiling JSONSchemaForm UnsupportedField.swift
[416/419] Compiling JSONSchemaForm JSONSchemaForm.swift
[417/419] Compiling JSONSchemaForm Registry.swift
[418/419] Compiling JSONSchemaForm ArrayFieldDescriptionTemplate.swift
[419/419] Compiling JSONSchemaForm ArrayFieldItemTemplate.swift
Build complete! (21.22s)
Fetching https://github.com/nalexn/ViewInspector
Fetching https://github.com/sirily11/swift-json-schema
Fetching https://github.com/apple/swift-collections from cache
[1/174] Fetching swift-json-schema
[175/12902] Fetching swift-json-schema, viewinspector
Fetched https://github.com/nalexn/ViewInspector from cache (1.38s)
Fetched https://github.com/sirily11/swift-json-schema from cache (1.38s)
Fetched https://github.com/apple/swift-collections from cache (1.41s)
Computing version for https://github.com/sirily11/swift-json-schema
Computed https://github.com/sirily11/swift-json-schema at 1.0.2 (1.94s)
Computing version for https://github.com/nalexn/ViewInspector
Computed https://github.com/nalexn/ViewInspector at 0.10.3 (0.48s)
Computing version for https://github.com/apple/swift-collections
Computed https://github.com/apple/swift-collections at 1.3.0 (0.62s)
Creating working copy for https://github.com/apple/swift-collections
Working copy of https://github.com/apple/swift-collections resolved at 1.3.0
Creating working copy for https://github.com/sirily11/swift-json-schema
Working copy of https://github.com/sirily11/swift-json-schema resolved at 1.0.2
Creating working copy for https://github.com/nalexn/ViewInspector
Working copy of https://github.com/nalexn/ViewInspector resolved at 0.10.3
Build complete.
{
  "dependencies" : [
    {
      "identity" : "swift-json-schema",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.2",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/sirily11/swift-json-schema"
    },
    {
      "identity" : "swift-collections",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "1.0.0",
            "upper_bound" : "2.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/apple/swift-collections"
    },
    {
      "identity" : "viewinspector",
      "requirement" : {
        "range" : [
          {
            "lower_bound" : "0.10.0",
            "upper_bound" : "1.0.0"
          }
        ]
      },
      "type" : "sourceControl",
      "url" : "https://github.com/nalexn/ViewInspector"
    }
  ],
  "manifest_display_name" : "JSONSchemaForm",
  "name" : "JSONSchemaForm",
  "path" : "/Users/admin/builder/spi-builder-workspace",
  "platforms" : [
    {
      "name" : "macos",
      "version" : "15.0"
    },
    {
      "name" : "ios",
      "version" : "17.0"
    }
  ],
  "products" : [
    {
      "name" : "JSONSchemaForm",
      "targets" : [
        "JSONSchemaForm"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    },
    {
      "name" : "JSONSchemaValidator",
      "targets" : [
        "JSONSchemaValidator"
      ],
      "type" : {
        "library" : [
          "automatic"
        ]
      }
    }
  ],
  "targets" : [
    {
      "c99name" : "JSONSchemaValidatorTests",
      "module_type" : "SwiftTarget",
      "name" : "JSONSchemaValidatorTests",
      "path" : "Sources/JSONSchemaValidatorTests",
      "sources" : [
        "ArrayValidatorTests.swift",
        "CombinatorsValidatorTests.swift",
        "EnumValidatorTests.swift",
        "FormatValidatorTests.swift",
        "IntegrationTests.swift",
        "JSONSchemaTypeTests.swift",
        "NumberValidatorTests.swift",
        "ObjectValidatorTests.swift",
        "StringValidatorTests.swift",
        "TypeValidatorTests.swift"
      ],
      "target_dependencies" : [
        "JSONSchemaValidator"
      ],
      "type" : "test"
    },
    {
      "c99name" : "JSONSchemaValidator",
      "module_type" : "SwiftTarget",
      "name" : "JSONSchemaValidator",
      "path" : "Sources/JSONSchemaValidator",
      "product_dependencies" : [
        "JSONSchema"
      ],
      "product_memberships" : [
        "JSONSchemaForm",
        "JSONSchemaValidator"
      ],
      "sources" : [
        "JSONSchemaValidating.swift",
        "JSONSchemaValidator.swift",
        "ValidationError.swift",
        "Validators/ArrayValidator.swift",
        "Validators/CombinatorsValidator.swift",
        "Validators/EnumValidator.swift",
        "Validators/FormatValidator.swift",
        "Validators/NumberValidator.swift",
        "Validators/ObjectValidator.swift",
        "Validators/StringValidator.swift",
        "Validators/TypeValidator.swift"
      ],
      "type" : "library"
    },
    {
      "c99name" : "JSONSchemaFormTests",
      "module_type" : "SwiftTarget",
      "name" : "JSONSchemaFormTests",
      "path" : "Sources/JSONSchemaFormTests",
      "product_dependencies" : [
        "ViewInspector"
      ],
      "sources" : [
        "FieldTemplateTests.swift",
        "FormDataEncodableTests.swift",
        "JSONSchemaForm+AllOfTests.swift",
        "JSONSchemaForm+ArrayTests.swift",
        "JSONSchemaForm+BooleanTests.swift",
        "JSONSchemaForm+ControllerTests.swift",
        "JSONSchemaForm+DefaultWithRefsTests.swift",
        "JSONSchemaForm+EnumTests.swift",
        "JSONSchemaForm+FieldOrderTests.swift",
        "JSONSchemaForm+IfThenElseTests.swift",
        "JSONSchemaForm+NumberTests.swift",
        "JSONSchemaForm+ObjectTests.swift",
        "JSONSchemaForm+OneOfTests.swift",
        "JSONSchemaForm+SchemaTests.swift",
        "JSONSchemaForm+StringTests.swift",
        "JSONSchemaForm+StringWidgetTests.swift",
        "JSONSchemaFormControllerTests.swift",
        "TestSchema.swift"
      ],
      "target_dependencies" : [
        "JSONSchemaForm"
      ],
      "type" : "test"
    },
    {
      "c99name" : "JSONSchemaForm",
      "module_type" : "SwiftTarget",
      "name" : "JSONSchemaForm",
      "path" : "Sources/JSONSchemaForm",
      "product_dependencies" : [
        "JSONSchema",
        "Collections"
      ],
      "product_memberships" : [
        "JSONSchemaForm"
      ],
      "sources" : [
        "Controller/FormContext.swift",
        "Controller/JSONSchemaFormController.swift",
        "Fields/AllOfField.swift",
        "Fields/AnyOfField.swift",
        "Fields/ArrayField.swift",
        "Fields/BooleanField.swift",
        "Fields/DescriptionField.swift",
        "Fields/EnumField.swift",
        "Fields/Fields.swift",
        "Fields/InvalidValueType.swift",
        "Fields/MultiSchemaField.swift",
        "Fields/NullField.swift",
        "Fields/NumberField.swift",
        "Fields/ObjectField.swift",
        "Fields/OneOfField.swift",
        "Fields/SchemaField.swift",
        "Fields/StringField.swift",
        "Fields/TitleField.swift",
        "Fields/UnsupportedField.swift",
        "JSONSchemaForm.swift",
        "Registry.swift",
        "Templates/ArrayFieldDescriptionTemplate.swift",
        "Templates/ArrayFieldItemTemplate.swift",
        "Templates/ArrayFieldTemplate.swift",
        "Templates/ArrayFieldTitleTemplate.swift",
        "Templates/BaseInputTemplate.swift",
        "Templates/ButtonTemplates/AddButton.swift",
        "Templates/ButtonTemplates/ButtonTemplates.swift",
        "Templates/ButtonTemplates/IconButton.swift",
        "Templates/ButtonTemplates/SubmitButton.swift",
        "Templates/DescriptionFieldTemplate.swift",
        "Templates/ErrorListTemplate.swift",
        "Templates/FieldErrorTemplate.swift",
        "Templates/FieldHelpTemplate.swift",
        "Templates/FieldTemplate.swift",
        "Templates/ObjectFieldTemplate.swift",
        "Templates/RegistryTemplates.swift",
        "Templates/TemplateProps.swift",
        "Templates/Templates.swift",
        "Templates/TitleFieldTemplate.swift",
        "Templates/UnsupportedFieldTemplate.swift",
        "Templates/WrapIfAdditionalTemplate.swift",
        "Theme.swift",
        "Types/EnumValue.swift",
        "Types/FormData.swift",
        "Utils/ConditionEvaluator.swift",
        "Utils/PropertyOrderExtractor.swift",
        "Utils/RegistryUtils.swift",
        "Utils/SchemaMerger.swift",
        "Utils/SchemaPreprocessor.swift",
        "Utils/SchemaUtils.swift",
        "Utils/UISchemaUtils.swift",
        "Utils/Validation.swift"
      ],
      "target_dependencies" : [
        "JSONSchemaValidator"
      ],
      "type" : "library"
    }
  ],
  "tools_version" : "6.0"
}
Done.