Given the following examples of conversion from the field boundaries format of a third party agriculture company 
to a farm management information system field boundaries format:

Given format:
 ``` json
{
  "links": [
    {
      "rel": "self",
      "uri": "https://sandboxapi.deere.com/platform/organizations/123456/boundaries"
    }
  ],
  "total": 1,
  "values": [
    {
      "@type": "Boundary",
      "id": "519dcf9a-8745-8745-9eaa-3dc7399f8745",
      "name": "Unique_Boundary_name",
      "sourceType": "HandDrawn",
      "createdTime": "2023-07-01T21:00:11Z",
      "modifiedTime": "2023-11-16T15:43:27.496Z",
      "area": {
        "@type": "MeasurementAsDouble",
        "valueAsDouble": 32.45477594323993,
        "unit": "ha"
      },
      "workableArea": {
        "@type": "MeasurementAsDouble",
        "valueAsDouble": 32.45477594323993,
        "unit": "ha"
      },
      "multipolygons": [
        {
          "@type": "Polygon",
          "rings": [
            {
              "@type": "Ring",
              "points": [
                {
                  "@type": "Point",
                  "lat": 49.428132,
                  "lon": 7.754085
                },
                {
                  "@type": "Point",
                  "lat": 49.428677,
                  "lon": 7.754605
                },
                {
                  "@type": "Point",
                  "lat": 49.428178,
                  "lon": 7.755774
                },
                {
                  "@type": "Point",
                  "lat": 49.427661,
                  "lon": 7.755275
                },
                {
                  "@type": "Point",
                  "lat": 49.428132,
                  "lon": 7.754085
                }
              ],
              "type": "exterior",
              "passable": true
            }
          ]
        }
      ],
      "extent": {
        "@type": "Extent",
        "topLeft": {
          "@type": "Point",
          "lat": 49.427661,
          "lon": 7.755275
        },
        "bottomRight": {
          "@type": "Point",
          "lat": 49.428677,
          "lon": 7.754605
        }
      },
      "links": [
        {
          "@type": "Link",
          "rel": "self",
          "uri": "https://sandboxapi.deere.com/platform/organizations/123456/fields/209b3c20-f33a-4c96-9a2c-613def198e0c /boundaries/519dcf9a-9931-4789-9eaa-3dc7399f2840"
        },
        {
          "@type": "Link",
          "rel": "owningOrganization",
          "uri": "https://sandboxapi.deere.com/platform/organizations/123456"
        },
        {
          "@type": "Link",
          "rel": "field",
          "uri": "https://sandboxapi.deere.com/platform/organizations/123456/fields/209b3c20-f33a-4c96-9a2c-613def198e0c"
        }
      ],
      "active": true,
      "irrigated": false,
      "archived": false,
      "signalType": "dtiSignalTypeRTK"
    }
  ]
}
```
Conversion result: 
```json
{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "id": "519dcf9a-8745-8745-9eaa-3dc7399f8745",
        "name": "Unique_Boundary_name",
        "sourceType": "HandDrawn",
        "createdTime": "2023-07-01T21:00:11Z",
        "modifiedTime": "2023-11-16T15:43:27.496Z",
        "area": {
          "@type": "MeasurementAsDouble",
          "valueAsDouble": 32.45477594323993,
          "unit": "ha"
        },
        "workableArea": {
          "@type": "MeasurementAsDouble",
          "valueAsDouble": 32.45477594323993,
          "unit": "ha"
        },
        "extent": {
          "@type": "Extent",
          "topLeft": {
            "@type": "Point",
            "lat": 49.427661,
            "lon": 7.755275
          },
          "bottomRight": {
            "@type": "Point",
            "lat": 49.428677,
            "lon": 7.754605
          }
        },
        "links": [
          {
            "@type": "Link",
            "rel": "self",
            "uri": "https://sandboxapi.deere.com/platform/organizations/123456/fields/209b3c20-f33a-4c96-9a2c-613def198e0c /boundaries/519dcf9a-9931-4789-9eaa-3dc7399f2840"
          },
          {
            "@type": "Link",
            "rel": "owningOrganization",
            "uri": "https://sandboxapi.deere.com/platform/organizations/123456"
          },
          {
            "@type": "Link",
            "rel": "field",
            "uri": "https://sandboxapi.deere.com/platform/organizations/123456/fields/209b3c20-f33a-4c96-9a2c-613def198e0c"
          }
        ],
        "active": true,
        "irrigated": false,
        "archived": false,
        "signalType": "dtiSignalTypeRTK"
      },
      "geometry": {
        "type": "Polygon",
        "coordinates": [
          [
            [7.754085, 49.428132],
            [7.754605, 49.428677],
            [7.755774, 49.428178],
            [7.755275, 49.427661],
            [7.754085, 49.428132]
          ]
        ]
      }
    }
  ]
}
```
Given format:
 ``` json
{
  "links": [
    {
      "rel": "self",
      "uri": "https://sandboxapi.deere.com/platform/organizations/123456/boundaries"
    }
  ],
  "total": 1,
  "values": [
    {
      "@type": "Boundary",
      "id": "519dcf9a-9931-4789-9eaa-3dc7399f2840",
      "name": "Unique_Boundary_name",
      "sourceType": "HandDrawn",
      "createdTime": "2018-07-01T21:00:11Z",
      "modifiedTime": "2017-11-16T15:43:27.496Z",
      "area": {
        "@type": "MeasurementAsDouble",
        "valueAsDouble": 32.45477594323993,
        "unit": "ha"
      },
      "workableArea": {
        "@type": "MeasurementAsDouble",
        "valueAsDouble": 32.45477594323993,
        "unit": "ha"
      },
      "multipolygons": [
        {
          "@type": "Polygon",
          "rings": [
            {
              "@type": "Ring",
              "points": [
                {
                  "@type": "Point",
                  "lat": 49.486551,
                  "lon": 7.859948
                },
                {
                  "@type": "Point",
                  "lat": 49.483806,
                  "lon": 7.853195
                },
                {
                  "@type": "Point",
                  "lat": 49.482231,
                  "lon": 7.852987
                },
                {
                  "@type": "Point",
                  "lat": 49.48123,
                  "lon": 7.852225
                },
                {
                  "@type": "Point",
                  "lat": 49.480589,
                  "lon": 7.852225
                },
                {
                  "@type": "Point",
                  "lat": 49.479306,
                  "lon": 7.856104
                },
                {
                  "@type": "Point",
                  "lat": 49.477236,
                  "lon": 7.857247
                },
                {
                  "@type": "Point",
                  "lat": 49.478676,
                  "lon": 7.861333
                },
                {
                  "@type": "Point",
                  "lat": 49.481646,
                  "lon": 7.861818
                },
                {
                  "@type": "Point",
                  "lat": 49.485133,
                  "lon": 7.861748
                },
                {
                  "@type": "Point",
                  "lat": 49.486596,
                  "lon": 7.861368
                },
                {
                  "@type": "Point",
                  "lat": 49.486191,
                  "lon": 7.860329
                },
                {
                  "@type": "Point",
                  "lat": 49.486551,
                  "lon": 7.859948
                }
              ],
              "type": "exterior",
              "passable": true
            }
          ]
        }
      ],
      "extent": {
        "@type": "Extent",
        "topLeft": {
          "@type": "Point",
          "lat": 41.607420743,
          "lon": -93.677587509
        },
        "bottomRight": {
          "@type": "Point",
          "lat": 41.604179741,
          "lon": -93.676643372
        }
      },
      "links": [
        {
          "@type": "Link",
          "rel": "self",
          "uri": "https://sandboxapi.deere.com/platform/organizations/123456/fields/209b3c20-f33a-4c96-9a2c-613def198e0c /boundaries/519dcf9a-9931-4789-9eaa-3dc7399f2840"
        },
        {
          "@type": "Link",
          "rel": "owningOrganization",
          "uri": "https://sandboxapi.deere.com/platform/organizations/123456"
        },
        {
          "@type": "Link",
          "rel": "field",
          "uri": "https://sandboxapi.deere.com/platform/organizations/123456/fields/209b3c20-f33a-4c96-9a2c-613def198e0c"
        }
      ],
      "active": false,
      "irrigated": true,
      "archived": false,
      "signalType": "dtiSignalTypeRTK"
    }
  ]
}
```
Conversion result: 
```json
{
  "type": "FeatureCollection",
  "features": [
    {
      "type": "Feature",
      "properties": {
        "id": "519dcf9a-9931-4789-9eaa-3dc7399f2840",
        "name": "Unique_Boundary_name",
        "sourceType": "HandDrawn",
        "createdTime": "2018-07-01T21:00:11Z",
        "modifiedTime": "2017-11-16T15:43:27.496Z",
        "area": {
          "@type": "MeasurementAsDouble",
          "valueAsDouble": 32.45477594323993,
          "unit": "ha"
        },
        "workableArea": {
          "@type": "MeasurementAsDouble",
          "valueAsDouble": 32.45477594323993,
          "unit": "ha"
        },
        "extent": {
          "@type": "Extent",
          "topLeft": {
            "@type": "Point",
            "lat": 41.607420743,
            "lon": -93.677587509
          },
          "bottomRight": {
            "@type": "Point",
            "lat": 41.604179741,
            "lon": -93.676643372
          }
        },
        "links": [
          {
            "@type": "Link",
            "rel": "self",
            "uri": "https://sandboxapi.deere.com/platform/organizations/123456/fields/209b3c20-f33a-4c96-9a2c-613def198e0c /boundaries/519dcf9a-9931-4789-9eaa-3dc7399f2840"
          },
          {
            "@type": "Link",
            "rel": "owningOrganization",
            "uri": "https://sandboxapi.deere.com/platform/organizations/123456"
          },
          {
            "@type": "Link",
            "rel": "field",
            "uri": "https://sandboxapi.deere.com/platform/organizations/123456/fields/209b3c20-f33a-4c96-9a2c-613def198e0c"
          }
        ],
        "active": false,
        "irrigated": true,
        "archived": false,
        "signalType": "dtiSignalTypeRTK"
      },
      "geometry": {
        "coordinates": [
          [
            [7.859948, 49.486551],
            [7.853195, 49.483806],
            [7.852987, 49.482231],
            [7.852225, 49.48123],
            [7.852225, 49.480589],
            [7.856104, 49.479306],
            [7.857247, 49.477236],
            [7.861333, 49.478676],
            [7.861818, 49.481646],
            [7.861748, 49.485133],
            [7.861368, 49.486596],
            [7.860329, 49.486191],
            [7.859948, 49.486551]
          ]
        ],
        "type": "Polygon"
      }
    }
  ]
}
```

Here is another example of an farm management information system (FMIS) JSON data format that represents a farm field boundaries based on the GeoJSON format: 

```json
      {
        "type": "Feature",
        "properties": {
          "name": "ArablebleArea",
          "type": "Feldweg",
          "source": "Rawdata",
          "date": "2021-05-25T11:25:45Z"
        },
        "geometry": {
          "type": "Polygon",
          "coordinates": [
              [
                [10.460348, 51.120577],
                [10.460492, 51.120627],
                [10.460969, 51.120139],
                [10.460819, 51.120081],
                [10.460348, 51.120577]
              ]
          ]
        }
      }

```

And here is the field boundaries JSON format of a field provided by a third party company which does not follow the GeoJSON format:

```json

```
Return the complete and valid GEOJSON feature translated version of the third-party company field data to the fmis format. 