Expand my Community achievements bar.

Join us on September 25th for a must-attend webinar featuring Adobe Experience Maker winner Anish Raul. Discover how leading enterprises are adopting AI into their workflows securely, responsibly, and at scale.
SOLVED

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

Avatar

Level 1

Here's an image for reference:

user15611_1-1753254074065.png

 

Topics

Topics help categorize Community content and increase your ability to discover relevant content.

1 Accepted Solution

Avatar

Correct answer by
Community Advisor

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!


View solution in original post

1 Reply

Avatar

Correct answer by
Community Advisor

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!