Is there any way to access the Display name and Description of the Field Name in Schema via Postman or AEP Query? | Adobe Higher Education
Skip to main content
New Member
July 23, 2025
解決済み

Is there any way to access the Display name and Description of the Field Name in Schema via Postman or AEP Query?

  • July 23, 2025
  • 1 の返信
  • 296 ビュー

Here's an image for reference:

 

ベストアンサー bjoern__koth

Hi @user15611 

You can retrieve a full schema definition (which includes fields and their descriptions if set) via a GET request to the schema endpoint:
 

 

GET /tenant/schemas/{SCHEMA_ID} 


 

Replace  {SCHEMA_ID}  with the schema’s  meta:altId  or  $id .

The response includes the JSON schema with properties and metadata describing fields, including any descriptions.

 

See also documentation here

1 の返信

bjoern__koth
Community Advisor and Adobe Champion
Community Advisor and Adobe Champion
July 23, 2025

Hi @user15611 

You can retrieve a full schema definition (which includes fields and their descriptions if set) via a GET request to the schema endpoint:
 

 

GET /tenant/schemas/{SCHEMA_ID} 


 

Replace  {SCHEMA_ID}  with the schema’s  meta:altId  or  $id .

The response includes the JSON schema with properties and metadata describing fields, including any descriptions.

 

See also documentation here

Cheers from Switzerland!