類別端點
所有Experience Data Model (XDM)結構描述都必須根據類別。 類別決定以該類別為基礎的所有結構描述都必須包含的通用屬性的基底結構,以及哪些結構描述欄位群組適合用於這些結構描述。 此外,結構描述的類別會決定結構描述將包含之資料的行為方面,其中有兩種型別:
- 記錄:提供有關主旨屬性的資訊。 主旨可以是組織或個人。
- 時間序列:提供記錄主體直接或間接執行動作時的系統快照。
Schema Registry API中的/classes
端點可讓您以程式設計方式管理體驗應用程式中的類別。
快速入門
本指南中使用的端點是Schema Registry API的一部分。 繼續之前,請先檢閱快速入門手冊,以取得相關檔案的連結、閱讀本檔案中範例API呼叫的手冊,以及有關成功呼叫任何Experience PlatformAPI所需必要標題的重要資訊。
擷取類別清單 list
您可以分別向/global/classes
或/tenant/classes
發出GET要求,列出global
或tenant
容器下的所有類別。
API格式
GET /{CONTAINER_ID}/classes?{QUERY_PARAMS}
{CONTAINER_ID}
global
(針對Adobe建立的類別)或tenant
(針對貴組織擁有的類別)。{QUERY_PARAMS}
要求
下列要求從tenant
容器擷取類別清單,使用orderby
查詢引數依類別的title
屬性排序類別。
curl -X GET \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/classes?orderby=title \
-H 'Accept: application/vnd.adobe.xed-id+json' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}'
回應格式取決於請求中傳送的Accept
標頭。 下列Accept
標頭可用於列出類別:
Accept
標題application/vnd.adobe.xed-id+json
application/vnd.adobe.xed+json
$ref
和allOf
。 (上限: 300)回應
上述要求使用了application/vnd.adobe.xed-id+json
Accept
標頭,因此回應只包含每個類別的title
、$id
、meta:altId
和version
屬性。 使用其他Accept
標頭(application/vnd.adobe.xed+json
)會傳回每個類別的所有屬性。 根據您在回應中需要的資訊,選取適當的Accept
標頭。
{
"results": [
{
"$id": "https://ns.adobe.com/{TENANT_ID}/classes/01b7b1745e8ac4ed1e8784ec91b6afa7",
"meta:altId": "_{TENANT_ID}.classes.01b7b1745e8ac4ed1e8784ec91b6afa7",
"version": "1.0",
"title": "Hotel"
},
{
"$id": "https://ns.adobe.com/{TENANT_ID}/classes/d43b86253676af50da3f671ecdd26ff9",
"meta:altId": "_{TENANT_ID}.classes.d43b86253676af50da3f671ecdd26ff9",
"version": "1.1",
"title": "Property"
},
{
"$id": "https://ns.adobe.com/{TENANT_ID}/classes/366f015dbfea802455fbc46c3b27f771",
"meta:altId": "_{TENANT_ID}.classes.366f015dbfea802455fbc46c3b27f771",
"version": "1.0",
"title": "Subscription"
}
],
"_page": {
"orderby": "title",
"next": null,
"count": 3
},
"_links": {
"next": null,
"global_schemas": {
"href": "https://platform.adobe.io/data/foundation/schemaregistry/global/classes"
}
}
}
查詢類別 lookup
您可以在GET請求的路徑中包含類別ID來查詢特定類別。
API格式
GET /{CONTAINER_ID}/classes/{CLASS_ID}
{CONTAINER_ID}
global
用於Adobe建立的類別,或tenant
用於貴組織擁有的類別。{CLASS_ID}
meta:altId
或URL編碼的$id
。要求
下列要求會依照路徑中提供的meta:altId
值擷取類別。
curl -X GET \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/classes/_{TENANT_ID}.classes.f579a0b5f992c69458ea408ec36571f7da9de15901bab116 \
-H 'Accept: application/vnd.adobe.xed+json' \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}'
回應格式取決於請求中傳送的Accept
標頭。 所有查詢請求都要求在Accept
標頭中包含version
。 下列Accept
標頭可供使用:
Accept
標題application/vnd.adobe.xed+json; version=1
$ref
和allOf
的原始,有標題和說明。application/vnd.adobe.xed-full+json; version=1
$ref
和allOf
已解決,有標題和說明。application/vnd.adobe.xed-notext+json; version=1
$ref
和allOf
的原始,沒有標題或說明。application/vnd.adobe.xed-full-notext+json; version=1
$ref
和allOf
已解決,無標題或說明。application/vnd.adobe.xed-full-desc+json; version=1
$ref
和allOf
,包含描述元。回應
成功的回應會傳回類別的詳細資料。 傳回的欄位取決於請求中傳送的Accept
標頭。 嘗試使用不同的Accept
標頭來比較回應,並決定哪個標頭最適合您的使用案例。
{
"$id":"https://ns.adobe.com/{TENANT_ID}/classes/f8bbdc3c49d49eae62d1c17e867230ac3de6b5b63b0615ce",
"meta:altId":"_{TENANT_ID}.classes.f8bbdc3c49d49eae62d1c17e867230ac3de6b5b63b0615ce",
"meta:resourceType":"classes",
"version":"1.1",
"title":"Hotel",
"type":"object",
"description":"Base class for the Hotels schema",
"definitions":{
"customFields":{
"type":"object",
"properties":{
"_{TENANT_ID}":{
"type":"object",
"properties":{
"Address":{
"title":"Address",
"description":"",
"isRequired":false,
"$ref":"https://ns.adobe.com/xdm/common/address",
"type":"object",
"meta:xdmType":"object"
},
"phoneNumber":{
"title":"Phone Number",
"description":"",
"isRequired":false,
"$ref":"https://ns.adobe.com/xdm/context/phonenumber",
"type":"object",
"meta:xdmType":"object"
},
"brand":{
"title":"Brand",
"description":"",
"type":"string",
"isRequired":false,
"meta:xdmType":"string"
},
"hotelId":{
"title":"Hotel ID",
"description":"",
"type":"string",
"isRequired":false,
"meta:xdmType":"string"
}
},
"meta:xdmType":"object"
}
},
"meta:xdmType":"object"
}
},
"allOf":[
{
"$ref":"https://ns.adobe.com/xdm/data/record",
"type":"object",
"meta:xdmType":"object"
},
{
"$ref":"#/definitions/customFields",
"type":"object",
"meta:xdmType":"object"
}
],
"imsOrg":"{ORG_ID}",
"meta:extensible":true,
"meta:abstract":true,
"meta:extends":[
"https://ns.adobe.com/xdm/data/record"
],
"meta:xdmType":"object",
"meta:registryMetadata":{
"repo:createdDate":1593643258779,
"repo:lastModifiedDate":1597246362579,
"xdm:createdClientId":"{CLIENT_ID}",
"xdm:lastModifiedClientId":"{CLIENT_ID}",
"xdm:createdUserId":"{USER_ID}",
"xdm:lastModifiedUserId":"{USER_ID}",
"eTag":"502f89ee16b8ab2e6b4ea09ecf0ab1e5614907db755051c1f3c65a273001d725",
"meta:globalLibVersion":"1.15.4"
},
"meta:containerId":"tenant",
"meta:tenantNamespace":"_{TENANT_ID}"
}
建立類別 create
您可以發出POST要求,在tenant
容器下定義自訂類別。
meta:intendedToExtend
屬性中相容的類別。 一旦您開始定義與新類別相容的欄位群組(透過使用欄位群組meta:intendedToExtend
欄位中新類別的$id
),每次定義實作您定義之類別的結構描述時,您都可以重複使用這些欄位群組。 如需詳細資訊,請參閱建立欄位群組和在各自的端點指南中建立結構描述的相關章節。API格式
POST /tenant/classes
要求
建立(POST)類別的要求必須包含allOf
屬性,該屬性包含$ref
到兩個值之一: https://ns.adobe.com/xdm/data/record
或https://ns.adobe.com/xdm/data/time-series
。 這些值代表類別所依據的行為(分別是記錄或時間序列)。 如需記錄資料與時間序列資料之間差異的詳細資訊,請參閱結構描述組合基本概念中的行為型別區段。
定義類別時,您也可以在類別定義中包含欄位群組或自訂欄位。 這會使新增的欄位群組和欄位包含在實作類別的所有結構描述中。 以下範例請求會定義一個名為「Property」的類別,用於擷取公司擁有和經營的不同屬性的相關資訊。 它包含每次使用類別時要包含的propertyId
欄位。
curl -X POST \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/classes \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'Content-Type: application/json' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-d '{
"title":"Property",
"description":"Properties owned and operated by the company.",
"type":"object",
"definitions": {
"property": {
"properties": {
"_{TENANT_ID}": {
"type": "object",
"properties": {
"property": {
"title": "Property Information",
"type": "object",
"description": "Information about different owned and operated properties.",
"properties": {
"propertyId": {
"title": "Property Identification Number",
"type": "string",
"description": "Unique Property identification number"
}
}
}
}
}
},
"type": "object"
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/data/record"
},
{
"$ref": "#/definitions/property"
}
]
}'
_{TENANT_ID}
TENANT_ID
名稱空間。 貴組織建立的所有資源都必須包含此屬性,以避免與Schema Registry中的其他資源發生衝突。allOf
$ref
物件之一定義了類別的行為。 在此範例中,類別會繼承「記錄」行為。回應
成功的回應會傳回HTTP狀態201 (已建立)以及包含新建立類別之詳細資訊的承載,包括$id
、meta:altId
和version
。 這三個值是唯讀值,並由Schema Registry指派。
{
"title": "Property",
"description": "Properties owned and operated by the company.",
"type": "object",
"definitions": {
"property": {
"properties": {
"_{TENANT_ID}": {
"type": "object",
"properties": {
"property": {
"title": "Property Information",
"type": "object",
"description": "Information about different owned and operated properties.",
"properties": {
"propertyId": {
"title": "Property Identification Number",
"type": "string",
"description": "Unique Property identification number",
"meta:xdmType": "string"
}
},
"meta:xdmType": "object"
}
},
"meta:xdmType": "object"
}
},
"type": "object",
"meta:xdmType": "object"
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/data/record"
},
{
"$ref": "#/definitions/property"
}
],
"meta:abstract": true,
"meta:extensible": true,
"meta:extends": [
"https://ns.adobe.com/xdm/data/record"
],
"meta:containerId": "tenant",
"imsOrg": "{ORG_ID}",
"meta:altId": "_{TENANT_ID}.classes.19e1d8b5098a7a76e2c10a81cbc99590",
"meta:xdmType": "object",
"$id": "https://ns.adobe.com/{TENANT_ID}/classes/19e1d8b5098a7a76e2c10a81cbc99590",
"version": "1.0",
"meta:resourceType": "classes",
"meta:registryMetadata": {
"repo:createDate": 1552086405448,
"repo:lastModifiedDate": 1552086405448,
"xdm:createdClientId": "{CREATED_CLIENT}",
"xdm:repositoryCreatedBy": "{CREATED_BY}"
}
}
執行GET要求至列出tenant
容器中的所有類別現在將包含Property類別。 您也可以使用URL編碼的$id
執行查詢(GET)要求,以直接檢視新類別。
更新類別 put
您可以透過PUT作業取代整個類別,基本上就是重新寫入資源。 透過PUT要求更新類別時,本文必須包含在POST要求中建立新類別時所需的所有欄位。
API格式
PUT /tenant/classes/{CLASS_ID}
{CLASS_ID}
meta:altId
或URL編碼的$id
。要求
下列要求會重新寫入現有類別,變更其description
及其其中一個欄位的title
。
curl -X PUT \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/classes/_{TENANT_ID}.classes.19e1d8b5098a7a76e2c10a81cbc99590 \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'Content-Type: application/json' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-d '{
"title": "Property",
"description": "Base class for properties operated by a company.",
"type": "object",
"definitions": {
"property": {
"properties": {
"_{TENANT_ID}": {
"type": "object",
"properties": {
"property": {
"title": "Property Information",
"type": "object",
"description": "Information about different owned and operated properties.",
"properties": {
"propertyId": {
"title": "Property ID",
"type": "string",
"description": "Unique Property ID string."
}
}
}
}
}
},
"type": "object"
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/data/record"
},
{
"$ref": "#/definitions/property"
}
]
}'
回應
成功的回應會傳回更新類別的詳細資料。
{
"title": "Property",
"description": "Base class for properties operated by a company.",
"type": "object",
"definitions": {
"property": {
"properties": {
"_{TENANT_ID}": {
"type": "object",
"properties": {
"property": {
"title": "Property Information",
"type": "object",
"description": "Information about different owned and operated properties.",
"properties": {
"propertyId": {
"title": "Property ID",
"type": "string",
"description": "Unique Property ID string",
"meta:xdmType": "string"
}
},
"meta:xdmType": "object"
}
},
"meta:xdmType": "object"
}
},
"type": "object",
"meta:xdmType": "object"
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/data/record"
},
{
"$ref": "#/definitions/property"
}
],
"meta:abstract": true,
"meta:extensible": true,
"meta:extends": [
"https://ns.adobe.com/xdm/data/record"
],
"meta:containerId": "tenant",
"imsOrg": "{ORG_ID}",
"meta:altId": "_{TENANT_ID}.classes.19e1d8b5098a7a76e2c10a81cbc99590",
"meta:xdmType": "object",
"$id": "https://ns.adobe.com/{TENANT_ID}/classes/19e1d8b5098a7a76e2c10a81cbc99590",
"version": "1.0",
"meta:resourceType": "classes",
"meta:registryMetadata": {
"repo:createDate": 1552086405448,
"repo:lastModifiedDate": 1552086405448,
"xdm:createdClientId": "{CREATED_CLIENT}",
"xdm:repositoryCreatedBy": "{CREATED_BY}"
}
}
更新類別的一部分 patch
您可以使用PATCH請求來更新類別的一部分。 Schema Registry支援所有標準JSON修補程式操作,包括add
、remove
和replace
。 如需JSON修補程式的詳細資訊,請參閱API基礎指南。
API格式
PATCH /tenant/class/{CLASS_ID}
{CLASS_ID}
$id
URI或您要更新的類別的meta:altId
。要求
下列範例要求會更新現有類別的description
及其其中一個欄位的title
。
請求內文採用陣列形式,每個列出的物件代表個別欄位的特定變更。 每個物件都包含要執行的作業(op
)、應在哪個欄位上執行該作業(path
),以及該作業中應包含哪些資訊(value
)。
curl -X PATCH \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/classes/_{TENANT_ID}.classes.19e1d8b5098a7a76e2c10a81cbc99590 \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}' \
-H 'content-type: application/json' \
-d '[
{ "op": "replace", "path": "/description", "value": "Base class for properties operated by a company."},
{ "op": "replace", "path": "/definitions/property/properties/_{TENANT_ID}/properties/property/properties/propertyId/title", "value": "Unique Property ID string" }
]'
回應
回應顯示兩個作業都已成功執行。 已更新description
以及propertyId
欄位的title
。
{
"title": "Property",
"description": "Base class for properties operated by a company.",
"type": "object",
"definitions": {
"property": {
"properties": {
"_{TENANT_ID}": {
"type": "object",
"properties": {
"property": {
"title": "Property Information",
"type": "object",
"description": "Information about different owned and operated properties.",
"properties": {
"propertyId": {
"title": "Property ID",
"type": "string",
"description": "Unique Property ID string",
"meta:xdmType": "string"
}
},
"meta:xdmType": "object"
}
},
"meta:xdmType": "object"
}
},
"type": "object",
"meta:xdmType": "object"
}
},
"allOf": [
{
"$ref": "https://ns.adobe.com/xdm/data/record"
},
{
"$ref": "#/definitions/property"
}
],
"meta:abstract": true,
"meta:extensible": true,
"meta:extends": [
"https://ns.adobe.com/xdm/data/record"
],
"meta:containerId": "tenant",
"imsOrg": "{ORG_ID}",
"meta:altId": "_{TENANT_ID}.classes.19e1d8b5098a7a76e2c10a81cbc99590",
"meta:xdmType": "object",
"$id": "https://ns.adobe.com/{TENANT_ID}/classes/19e1d8b5098a7a76e2c10a81cbc99590",
"version": "1.0",
"meta:resourceType": "classes",
"meta:registryMetadata": {
"repo:createDate": 1552086405448,
"repo:lastModifiedDate": 1552086405448,
"xdm:createdClientId": "{CREATED_CLIENT}",
"xdm:repositoryCreatedBy": "{CREATED_BY}"
}
}
刪除類別 delete
有時可能需要從結構描述登入中移除類別。 若要這麼做,請使用路徑中提供的類別ID執行DELETE要求。
API格式
DELETE /tenant/classes/{CLASS_ID}
{CLASS_ID}
$id
URI或您要刪除之類別的meta:altId
。要求
curl -X DELETE \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/classes/_{TENANT_ID}.classes.d5cc04eb8d50190001287e4c869ebe67 \
-H 'Authorization: Bearer {ACCESS_TOKEN}' \
-H 'x-api-key: {API_KEY}' \
-H 'x-gw-ims-org-id: {ORG_ID}' \
-H 'x-sandbox-name: {SANDBOX_NAME}'
回應
成功的回應會傳回HTTP狀態204 (無內容)和空白內文。
您可以嘗試該類別的查詢(GET)要求以確認刪除。 您需要在要求中包含Accept
標頭,但應該會收到HTTP狀態404 (找不到),因為類別已從結構描述登入中移除。