Datasets - Get
取得指定的數據集。
GET {endpoint}/datasets/{datasetId}?api-version=2023-11-01-preview
URI 參數
| 名稱 | 位於 | 必要 | 類型 | Description |
|---|---|---|---|---|
|
dataset
|
path | True |
string |
數據集的識別碼。 |
|
endpoint
|
path | True |
string (uri) |
命名空間的主機名,例如 admaInstanceName.farmbeats.azure.net |
|
api-version
|
query | True |
string |
要求的 API 版本 |
要求標頭
| 名稱 | 必要 | 類型 | Description |
|---|---|---|---|
| Authorization | True |
string |
請提供授權 API 呼叫的有效持有人令牌。 請注意,如果您之前嘗試未驗證的呼叫,您可能需要清除瀏覽器快取。 |
回應
| 名稱 | 類型 | Description |
|---|---|---|
| 200 OK |
成功 |
|
| Other Status Codes |
錯誤 標題 x-ms-error-code: string |
安全性
Authorization
請提供授權 API 呼叫的有效持有人令牌。 請注意,如果您之前嘗試未驗證的呼叫,您可能需要清除瀏覽器快取。
類型:
apiKey
位於:
header
範例
Datasets_Get
範例要求
GET {endpoint}/datasets/Dataset1?api-version=2023-11-01-preview
範例回覆
{
"type": "Chemical",
"recordsSchema": {
"type": "object",
"properties": {
"name": {
"type": "string",
"minLength": 2,
"maxLength": 100
},
"code": {
"type": "string"
},
"Company": {
"type": "string"
},
"MatterStateCode": {
"type": "string"
},
"RegulatorNumbers": {
"type": "array",
"items": {
"type": "string"
}
},
"ChemicalTypeCodes": {
"type": "array",
"items": {
"type": "string"
}
},
"ChemicalTypeNames": {
"type": "array",
"items": {
"type": "string"
}
},
"SubstanceCodes": {
"type": "array",
"items": {
"type": "string"
}
},
"SubstanceNames": {
"type": "array",
"items": {
"type": "string"
}
},
"SubstancePercentages": {
"type": "number",
"maximum": 100,
"minimum": 0
},
"CreatedAtDate": {
"type": "string",
"format": "date-time"
},
"UpdatedAtDate": {
"type": "string",
"format": "date-time"
}
},
"required": [
"Company",
"name"
],
"additionalProperties": false
},
"id": "Dataset1",
"eTag": "43009725-0000-0700-0000-652ec9ec0000",
"status": "string",
"createdDateTime": "2023-10-17T17:52:44Z",
"modifiedDateTime": "2023-10-17T17:52:44Z",
"source": "Partner",
"name": "Chemical Dataset",
"description": "Chemical Dataset",
"createdBy": "00000000-0000-0000-0000-000000000000",
"modifiedBy": "00000000-0000-0000-0000-000000000000",
"properties": {
"key1": "value1",
"key2": 123.45
}
}
定義
| 名稱 | Description |
|---|---|
| Dataset |
數據集資源的架構。 |
|
Dataset |
資料集的類型。 支援的類型:Crop、CropProduct、ChemicalProduct、Equipment。 |
| Error |
來自 Azure AgPlatform 服務的錯誤。 |
|
Error |
來自 Azure AgPlatform 服務的錯誤回應。 如需 ErrorResponse 參考檔,請參閱 https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses。 |
|
Inner |
包含錯誤清單的內部錯誤。請參閱 innerError 參考檔 https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#innererror--object。 |
Dataset
數據集資源的架構。
| 名稱 | 類型 | Description |
|---|---|---|
| createdBy |
string |
由使用者/租使用者標識碼建立。 |
| createdDateTime |
string (date-time) |
建立資源的日期時間,範例格式:yyyy-MM-ddTHH:mm:ssZ。 |
| description |
string minLength: 0maxLength: 500 |
資源的文字描述。 |
| eTag |
string |
要實作開放式並行存取的ETag值。 |
| id |
string |
唯一的資源標識碼。 |
| modifiedBy |
string |
由使用者/租使用者標識碼修改。 |
| modifiedDateTime |
string (date-time) |
上次修改資源的日期時間,範例格式:yyyy-MM-ddTHH:mm:ssZ。 |
| name |
string minLength: 0maxLength: 100 |
用來識別資源的名稱。 |
| properties |
屬於資源的索引鍵值組集合。 每個配對不能有大於 50 個字元的索引鍵,而且不能有大於 150 個字元的值。 注意:最多可以針對資源提供 25 個索引鍵值組,而且只支援字串、數位和日期時間 (yyyy-MM-ddTHH:mm:ssZ) 值。 |
|
| recordsSchema |
數據集下記錄的架構。 |
|
| solutionId |
string |
數據集解決方案的解決方案識別碼。 |
| source |
string minLength: 2maxLength: 100 |
資源的來源。 |
| status |
string minLength: 0maxLength: 100 |
資源的狀態。 |
| type |
資料集的類型。 支援的類型:Crop、CropProduct、ChemicalProduct、Equipment。 |
DatasetType
資料集的類型。 支援的類型:Crop、CropProduct、ChemicalProduct、Equipment。
| 值 | Description |
|---|---|
| Crop | |
| CropProduct | |
| ChemicalProduct | |
| FarmEquipment |
Error
來自 Azure AgPlatform 服務的錯誤。
| 名稱 | 類型 | Description |
|---|---|---|
| code |
string minLength: 1 |
伺服器定義的錯誤碼集。 |
| details |
Error[] |
導致此錯誤之特定錯誤的詳細數據陣列。 |
| innererror |
包含錯誤清單的內部錯誤。請參閱 innerError 參考檔 https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#innererror--object。 |
|
| message |
string minLength: 1 |
人類可讀取的錯誤表示法。 |
| target |
string |
錯誤的目標。 |
ErrorResponse
來自 Azure AgPlatform 服務的錯誤回應。 如需 ErrorResponse 參考檔,請參閱 https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#7102-error-condition-responses。
| 名稱 | 類型 | Description |
|---|---|---|
| error |
來自 Azure AgPlatform 服務的錯誤。 |
|
| traceId |
string |
唯一追蹤標識碼。 |
InnerError
包含錯誤清單的內部錯誤。請參閱 innerError 參考檔 https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#innererror--object。
| 名稱 | 類型 | Description |
|---|---|---|
| code |
string |
包含錯誤所提供的特定錯誤碼。 |
| innererror |
包含錯誤清單的內部錯誤。請參閱 innerError 參考檔 https://github.com/Microsoft/api-guidelines/blob/vNext/Guidelines.md#innererror--object。 |