Grafana provision dashboard with UID via yaml but same UID is not reflecting in actual dashboard

I am creating pre defined dash board with uid to get constant embed url.
dash borad is created but embed url not considering uid and every deployment getting random uid so geting different embed url.
I tested with docker.io/grafana/grafana:9.1.6 and docker.io/grafana/grafana:9.5.5 images

How are you provisioning dashboard

we are tyring provision dashboard via yaml and the actual dashboard is not reflecting the given UID.

We are able to see the UID provisioned when we deploy grafana using helm way.
The expected url:
http://<deployed_vm_ip>:30080/d-solo/smo_performance_metrcis/smo-performance-metrcis?orgId=1&refresh=30s&panelId=2
The actual output:
http://<deployed_vm_ip>:30080/grafana/d-solo/4a1d2dea-7793-4894-be59-c01548dca855/smo-performance-metrcis?orgId=1&refresh=30s&panelId=2

I am providing corresponding dashboard json details from grafana operator yaml file content as below:

apiVersion: grafana.integreatly.org/v1beta1
kind: GrafanaDashboard
metadata:
name: grafanadashboard-smo
spec:
resyncPeriod: 30s
instanceSelector:
matchLabels:
dashboards: “grafana”
json: >
{
“__inputs”: [

  ],
  "__requires": [

  ],
  "annotations": {
      "list": [

      ]
  },
  "editable": true,
  "gnetId": null,
  "graphTooltip": 1,
  "hideControls": false,
  "id": null,
  "links": [

  ],
  "refresh": "30s",
  "rows": [
      {
          "collapse": false,
          "collapsed": false,
          "panels": [
              {
                  "id": 2,
                  "gridPos": {
                      "h": 9,
                      "w": 12,
                      "x": 0,
                      "y": 0
                    },
                    "type": "timeseries",
                    "title": "smo pm metrics panel",
                    "datasource": {
                      "type": "prometheus",
                      "uid": "prometheus"
                    },
                    "fieldConfig": {
                      "defaults": {
                        "custom": {
                          "drawStyle": "line",
                          "lineInterpolation": "linear",
                          "barAlignment": 0,
                          "lineWidth": 1,
                          "fillOpacity": 0,
                          "gradientMode": "none",
                          "spanNulls": false,
                          "showPoints": "auto",
                          "pointSize": 5,
                          "stacking": {
                            "mode": "none",
                            "group": "A"
                          },
                          "axisPlacement": "auto",
                          "axisLabel": "",
                          "axisColorMode": "text",
                          "scaleDistribution": {
                            "type": "linear"
                          },
                          "axisCenteredZero": false,
                          "hideFrom": {
                            "tooltip": false,
                            "viz": false,
                            "legend": false
                          },
                          "thresholdsStyle": {
                            "mode": "off"
                          }
                        },
                        "color": {
                          "mode": "palette-classic"
                        },
                        "mappings": [],
                        "thresholds": {
                          "mode": "absolute",
                          "steps": [
                            {
                              "color": "green",
                              "value": null
                            },
                            {
                              "color": "red",
                              "value": 80
                            }
                          ]
                        }
                      },
                      "overrides": []
                    },
                    "options": {
                      "tooltip": {
                        "mode": "single",
                        "sort": "none"
                      },
                      "legend": {
                        "showLegend": true,
                        "displayMode": "list",
                        "placement": "bottom",
                        "calcs": []
                      }
                    },
                    "targets": [
                      {
                        "datasource": {
                          "type": "prometheus",
                          "uid": "prometheus"
                        },
                        "editorMode": "builder",
                        "expr": "RRU_PrbAvailDl",
                        "legendFormat": "__auto",
                        "range": true,
                        "refId": "Metric1"
                      },
                      {
                        "datasource": {
                          "type": "prometheus",
                          "uid": "prometheus"
                        },
                        "editorMode": "builder",
                        "expr": "RRU_PrbAvailUl",
                        "hide": false,
                        "legendFormat": "__auto",
                        "range": true,
                        "refId": "Metric2"
                      },
                      {
                        "datasource": {
                          "type": "prometheus",
                          "uid": "prometheus"
                        },
                        "editorMode": "builder",
                        "expr": "DRB_PdcpSduDelayDl",
                        "hide": false,
                        "legendFormat": "__auto",
                        "range": true,
                        "refId": "Metric3"
                      },
                      {
                        "datasource": {
                          "type": "prometheus",
                          "uid": "prometheus"
                        },
                        "editorMode": "builder",
                        "expr": "DRB_UEThpDl_PLMN_000",
                        "legendFormat": "__auto",
                        "range": true,
                        "refId": "Metric4"
                      }
                    ]
              }
          ],
          "repeat": null,
          "repeatIteration": null,
          "repeatRowId": null,
          "showTitle": true,
          "title": "PM dashboard",
          "titleSize": "h6",
          "type": "row"
      }
  ],
  "schemaVersion": 14,
  "style": "dark",
  "time": {
      "from": "now-6h",
      "to": "now"
  },
  "timepicker": {
      "refresh_intervals": [
          "5s",
          "10s",
          "30s",
          "1m",
          "5m",
          "15m",
          "30m",
          "1h",
          "2h",
          "1d"
      ],
      "time_options": [
          "5m",
          "15m",
          "1h",
          "6h",
          "12h",
          "24h",
          "2d",
          "7d",
          "30d"
      ]
  },
  "timezone": "{{ .Values.grafana.defaultDashboardsTimezone }}",
  "uid": "smo_performance_metrcis",
  "title": "smo performance metrcis",
  "version": 0
}

Please let me know if any further information required

is this the uid?

"uid": "smo_performance_metrcis",

Yes, you are connect. dash board uid is “smo_performance_metrcis”