描述符端点
架构定义了数据实体的静态视图,但未提供基于这些架构(例如数据集)的数据如何相互关联的特定详细信息。 Adobe Experience Platform允许您使用描述符描述这些关系以及有关架构的其他解释性元数据。
架构描述符是租户级别的元数据,这意味着它们对于您的组织是唯一的,并且所有描述符操作都在租户容器中进行。
每个架构可以应用一个或多个架构描述符实体。 每个架构描述符实体包括描述符@type
及其适用的sourceSchema
。 应用后,这些描述符将应用于使用该架构创建的所有数据集。
Schema Registry API中的/descriptors
端点允许您以编程方式管理体验应用程序中的描述符。
快速入门
本指南中使用的终结点是Schema Registry API的一部分。 在继续之前,请查看快速入门指南,以获取相关文档的链接、阅读本文档中示例API调用的指南,以及有关成功调用任何Experience PlatformAPI所需的所需标头的重要信息。
检索描述符列表 list
通过向/tenant/descriptors
发出GET请求,您可以列出贵组织定义的所有描述符。
API格式
GET /tenant/descriptors
请求
curl -X GET \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/descriptors \
-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 'Accept: application/vnd.adobe.xdm-link+json'
响应格式取决于请求中发送的Accept
标头。 请注意,/descriptors
端点使用的Accept
标头与Schema Registry API中的所有其他端点不同。
xed
替换为xdm
的唯一Accept
标头,并且还提供描述符唯一的link
选项。 以下示例调用中已包含正确的Accept
标头,但请格外小心,以确保在使用描述符时使用正确的标头。Accept
标头application/vnd.adobe.xdm-id+json
application/vnd.adobe.xdm-link+json
application/vnd.adobe.xdm+json
application/vnd.adobe.xdm-v2+json
Accept
标头必须使用分页功能。响应
响应包括已定义描述符的每个描述符类型的数组。 换言之,如果没有定义特定@type
的描述符,则注册表将不会为该描述符类型返回空数组。
使用link
Accept
标头时,每个描述符都显示为格式为/{CONTAINER}/descriptors/{DESCRIPTOR_ID}
的数组项
{
"xdm:alternateDisplayInfo": [
"/tenant/descriptors/85dc1bc8b91516ac41163365318e38a9f1e4f351",
"/tenant/descriptors/49bd5abb5a1310ee80ebc1848eb508d383a462cf",
"/tenant/descriptors/b3b3e548f1c653326bcf5459ceac4140fc0b9e08"
],
"xdm:descriptorIdentity": [
"/tenant/descriptors/f7a4bc25429496c4740f8f9a7a49ba96862c5379"
],
"xdm:descriptorOneToOne": [
"/tenant/descriptors/cb509fd6f8ab6304e346905441a34b58a0cd481a"
]
}
查找描述符 lookup
如果要查看特定描述符的详细信息,可以使用其@id
查找(GET)单个描述符。
API格式
GET /tenant/descriptors/{DESCRIPTOR_ID}
{DESCRIPTOR_ID}
@id
。请求
以下请求按其@id
值检索描述符。 描述符未进行版本控制,因此查找请求中不需要任何Accept
标头。
curl -X GET \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/descriptors/f3a1dfa38a4871cf4442a33074c1f9406a593407 \
-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}'
响应
成功的响应将返回描述符的详细信息,包括其@type
和sourceSchema
,以及根据描述符类型而异的其他信息。 返回的@id
应与请求中提供的描述符@id
匹配。
{
"@type": "xdm:descriptorIdentity",
"xdm:sourceSchema": "https://ns.adobe.com/{TENANT_ID}/schemas/fbc52b243d04b5d4f41eaa72a8ba58be",
"xdm:sourceVersion": 1,
"xdm:sourceProperty": "/personalEmail/address",
"xdm:namespace": "Email",
"xdm:property": "xdm:code",
"xdm:isPrimary": false,
"createdUser": "{CREATED_USER}",
"imsOrg": "{ORG_ID}",
"createdClient": "{CREATED_CLIENT}",
"updatedUser": "{UPDATED_USER}",
"created": 1548899346989,
"updated": 1548899346989,
"meta:containerId": "tenant",
"@id": "f3a1dfa38a4871cf4442a33074c1f9406a593407"
}
创建描述符 create
您可以通过向/tenant/descriptors
端点发出POST请求来创建新的描述符。
API格式
POST /tenant/descriptors
请求
以下请求在示例架构中的“电子邮件地址”字段中定义标识描述符。 这告知Experience Platform使用电子邮件地址作为标识符以帮助拼接有关个人的信息。
curl -X POST \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/descriptors \
-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 '
{
"@type": "xdm:descriptorIdentity",
"xdm:sourceSchema": "https://ns.adobe.com/{TENANT_ID}/schemas/fbc52b243d04b5d4f41eaa72a8ba58be",
"xdm:sourceVersion": 1,
"xdm:sourceProperty": "/personalEmail/address",
"xdm:namespace": "Email",
"xdm:property": "xdm:code",
"xdm:isPrimary": false
}'
响应
成功的响应返回HTTP状态201 (已创建)以及新创建的描述符的详细信息,包括其@id
。 @id
是由Schema Registry分配的只读字段,用于引用API中的描述符。
{
"@type": "xdm:descriptorIdentity",
"xdm:sourceSchema": "https://ns.adobe.com/{TENANT_ID}/schemas/fbc52b243d04b5d4f41eaa72a8ba58be",
"xdm:sourceVersion": 1,
"xdm:sourceProperty": "/personalEmail/address",
"xdm:namespace": "Email",
"xdm:property": "xdm:code",
"xdm:isPrimary": false,
"meta:containerId": "tenant",
"@id": "f3a1dfa38a4871cf4442a33074c1f9406a593407"
}
更新描述符 put
您可以通过在PUT请求的路径中包含描述符的@id
来更新描述符。
API格式
PUT /tenant/descriptors/{DESCRIPTOR_ID}
{DESCRIPTOR_ID}
@id
。请求
此请求基本上重写描述符,因此请求正文必须包含定义该类型的描述符所需的所有字段。 换句话说,用于更新(PUT)描述符的请求有效负载与用于创建(POST)相同类型的描述符的有效负载相同。
以下示例将标识描述符更新为引用其他xdm:sourceProperty
(mobile phone
),并将xdm:namespace
更改为Phone
。
curl -X PUT \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/descriptors/f3a1dfa38a4871cf4442a33074c1f9406a593407 \
-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 '{
"@type": "xdm:descriptorIdentity",
"xdm:sourceSchema": "https://ns.adobe.com/{TENANT_ID}/schemas/fbc52b243d04b5d4f41eaa72a8ba58be",
"xdm:sourceVersion": 1,
"xdm:sourceProperty": "/mobilePhone/number",
"xdm:namespace": "Phone",
"xdm:property": "xdm:code",
"xdm:isPrimary": false
}'
响应
成功的响应返回HTTP状态201 (已创建)和更新描述符的@id
(应与请求中发送的@id
匹配)。
{
"@id": "f3a1dfa38a4871cf4442a33074c1f9406a593407"
}
执行查找(GET)请求以查看描述符时,显示字段现已更新以反映PUT请求中发送的更改。
删除描述符 delete
有时您可能需要从Schema Registry中删除已定义的描述符。 这是通过发出引用要删除的描述符的@id
的DELETE请求来完成的。
API格式
DELETE /tenant/descriptors/{DESCRIPTOR_ID}
{DESCRIPTOR_ID}
@id
。请求
curl -X DELETE \
https://platform.adobe.io/data/foundation/schemaregistry/tenant/descriptors/ca921946fb5281cbdb8ba5e07087486ce531a1f2 \
-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(无内容)和一个空白正文。
要确认该描述符已被删除,您可以对该描述符@id
执行查找请求。 响应返回HTTP状态404 (未找到),因为描述符已从Schema Registry中删除。
附录
以下部分提供了有关在Schema Registry API中使用描述符的其他信息。
定义描述符 defining-descriptors
以下部分概述了可用的描述符类型,包括用于定义每种类型的描述符的必填字段。
身份描述符
标识描述符指示“sourceSchema”的“sourceProperty”是Adobe Experience Platform Identity Service描述的Identity字段。
{
"@type": "xdm:descriptorIdentity",
"xdm:sourceSchema":
"https://ns.adobe.com/{TENANT_ID}/schemas/fbc52b243d04b5d4f41eaa72a8ba58be",
"xdm:sourceVersion": 1,
"xdm:sourceProperty": "/personalEmail/address",
"xdm:namespace": "Email",
"xdm:property": "xdm:code",
"xdm:isPrimary": false
}
@type
xdm:descriptorIdentity
。xdm:sourceSchema
$id
URI。xdm:sourceVersion
xdm:sourceProperty
xdm:namespace
xdm:property
xdm:id
或xdm:code
,具体取决于使用的xdm:namespace
。xdm:isPrimary
友好名称描述符 friendly-name
友好名称描述符允许用户修改核心库架构字段的title
、description
和meta:enum
值。 在使用“eVar”和您希望标记为包含特定于您的组织的信息的其他“通用”字段时特别有用。 UI可以使用这些显示更友好的名称或仅显示具有友好名称的字段。
{
"@type": "xdm:alternateDisplayInfo",
"xdm:sourceSchema": "https://ns.adobe.com/{TENANT_ID}/schemas/274f17bc5807ff307a046bab1489fb18",
"xdm:sourceVersion": 1,
"xdm:sourceProperty": "/xdm:eventType",
"xdm:title": {
"en_us": "Event Type"
},
"xdm:description": {
"en_us": "The type of experience event detected by the system."
},
"meta:enum": {
"click": "Mouse Click",
"addCart": "Add to Cart",
"checkout": "Cart Checkout"
},
"xdm:excludeMetaEnum": {
"web.formFilledOut": "Web Form Filled Out",
"media.ping": "Media ping"
}
}
@type
xdm:alternateDisplayInfo
。xdm:sourceSchema
$id
URI。xdm:sourceVersion
xdm:sourceProperty
/
)开头,而不是以斜杠结尾。 不要在路径中包含properties
(例如,使用/personalEmail/address
而不是/properties/personalEmail/properties/address
)。xdm:title
xdm:description
meta:enum
xdm:sourceProperty
指示的字段为字符串字段,则可以使用meta:enum
在分段UI中为字段添加建议值。 需要注意的是,meta:enum
不会为XDM字段声明枚举或提供任何数据验证。这只能用于Adobe定义的核心XDM字段。 如果源属性是由贵组织定义的自定义字段,则应直接通过对该字段父资源的PATCH请求编辑该字段的
meta:enum
属性。meta:excludeMetaEnum
xdm:sourceProperty
指示的字段是一个字符串字段,该字段具有在meta:enum
字段下提供的现有建议值,则可以在友好名称描述符中包含此对象,以从分段中排除这些值的部分或全部。 每个条目的键和值必须与字段的原始meta:enum
中包含的键和值匹配,才能排除该条目。关系描述符
关系描述符描述两个不同架构之间的关系,它们以sourceProperty
和destinationProperty
中描述的属性作为密钥。 有关详细信息,请参阅有关定义两个架构之间关系的教程。
{
"@type": "xdm:descriptorOneToOne",
"xdm:sourceSchema":
"https://ns.adobe.com/{TENANT_ID}/schemas/fbc52b243d04b5d4f41eaa72a8ba58be",
"xdm:sourceVersion": 1,
"xdm:sourceProperty": "/parentField/subField",
"xdm:destinationSchema":
"https://ns.adobe.com/{TENANT_ID}/schemas/78bab6346b9c5102b60591e15e75d254",
"xdm:destinationVersion": 1,
"xdm:destinationProperty": "/parentField/subField"
}
@type
xdm:descriptorOneToOne
。xdm:sourceSchema
$id
URI。xdm:sourceVersion
xdm:sourceProperty
xdm:destinationSchema
$id
URI。xdm:destinationVersion
xdm:destinationProperty
引用身份描述符
引用身份描述符为架构字段的主要身份提供引用上下文,允许其他架构中的字段引用该上下文。 引用架构必须先定义主标识字段,其他架构才能通过此描述符引用该字段。
{
"@type": "xdm:descriptorReferenceIdentity",
"xdm:sourceSchema": "https://ns.adobe.com/{TENANT_ID}/schemas/78bab6346b9c5102b60591e15e75d254",
"xdm:sourceVersion": 1,
"xdm:sourceProperty": "/parentField/subField",
"xdm:identityNamespace": "Email"
}
@type
xdm:descriptorReferenceIdentity
。xdm:sourceSchema
$id
URI。xdm:sourceVersion
xdm:sourceProperty
/personalEmail/address
而不是/properties/personalEmail/properties/address
)。xdm:identityNamespace
已弃用的字段描述符
您可以弃用自定义XDM资源中的字段,方法是向相关字段添加设置为deprecated
的meta:status
属性。 但是,如果要弃用由架构中的标准XDM资源提供的字段,可向相关架构分配已弃用的字段描述符,以实现相同的效果。 通过使用正确的Accept
标头,您可以在API中查找架构时查看该架构已弃用的标准字段。
{
"@type": "xdm:descriptorDeprecated",
"xdm:sourceSchema": "https://ns.adobe.com/{TENANT_ID}/schemas/c65ddf08cf2d4a2fe94bd06113bf4bc4c855e12a936410d5",
"xdm:sourceVersion": 1,
"xdm:sourceProperty": "/faxPhone"
}
@type
xdm:descriptorDeprecated
。xdm:sourceSchema
$id
。xdm:sourceVersion
1
。xdm:sourceProperty
["/firstName", "/lastName"]
)。