Returns the details of the given field of the given database table

GET
api/databases/{dbid}/metadata/tables/{table}/fields/{field}
This request is used for getting information about the given field of the given database table. For example, you can get such field properties as DisplayName - name of field displayed in UI, TypeName - name of data type (.NET), etc.

Request:

Argument Type Description
dbid GUID  The ID of the database
table String  The name of the database table
field String  The name of the database table field

Response:

Content

Type name Description
Object 

Request:
  1. GET api/databases/ec5a34c2-7062-4be7-ade9-c15acefcdbb8/metadata/tables/Notifications/fields/Description
  2. Accept: text/json
  3. Accept-Encoding: deflate
  4. Host: localhost:6496
  5. Cookie: sid=20715d87-29dc-429e-9a86-4b3c60cd8a45
Response:
  1. Transfer-Encoding: chunked
  2. Content-Encoding:
  3. Cache-Control: no-store
  4. Content-Type: text/json; charset=utf-8
  5. Date: Fri, 21 Dec 2012 15:35:41 GMT
  6. ETag: "634916866010755264"
  7. Last-Modified: Fri, 21 Dec 2012 09:36:41 GMT
  8. Server: Microsoft-HTTPAPI/2.0
  9.  
  10. {
  11. "MetaName": "Description",
  12. "Name": "Description",
  13. "DisplayName": "Description",
  14. "Description": "",
  15. "TypeName": "System.String",
  16. "BigStringLite": null,
  17. "HashValue": null,
  18. "ApiFlags": null,
  19. "Declarative": false,
  20. "LockedBySolution": false,
  21. "IsDelayed": false,
  22. "AllowNull": true,
  23. "System": false,
  24. "IsBigString": false,
  25. "IsBlob": false,
  26. "UserProtoBuf": false,
  27. "StringSize": 4096,
  28. "StringCutPolicy": {
  29. "Value": 1,
  30. "Title": "CutWithDot"
  31. },
  32. "IndexNames": "",
  33. "Calculated": false
  34. }