datahub-project / datahub

The Metadata Platform for your Data and AI Stack
https://datahubproject.io
Apache License 2.0
9.93k stars 2.94k forks source link

docs(structured props): fix a typo in structured property docs #11887

Closed gabe-lyons closed 2 days ago

gabe-lyons commented 3 days ago

Checklist

this document refers to the wrong data type URN

 datahub get --urn "urn:li:dataType:number"                                                                      
{
  "dataTypeKey": {
    "id": "number"
  }
}
datahub get --urn "urn:li:dataType:datahub.number"                                                                 
{
  "dataTypeInfo": {
    "description": "An integer or decimal number.",
    "displayName": "Number",
    "qualifiedName": "datahub.number"
  },
  "dataTypeKey": {
    "id": "datahub.number"
  }
}