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]
          ]
        ]
      }
    }
  ]
}
```

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. 