customization

Aggregated Schema Get

GET
Gets the aggregated schema.

Query parameters

custom_schema_fragment_idsstringOptional
The list of custom schema fragment DONs which are to be aggregated.
leaf_typestringOptional
The leaf type. Used for inferring the default stage diagram and tenant fragment ID.
stock_schema_fragment_idstringOptional
The stock schema fragment which is to be aggregated.

Response

This endpoint returns an object
schema
map from strings to any
List of custom fields from multiple source fragments.
GET
1curl -G https://api.devrev.ai/schemas.aggregated.get \
2 -H "Authorization: <apiKey>" \
3 -d custom_schema_fragment_ids=string \
4 -d leaf_type=string
200
Retrieved
1{
2 "schema": {
3 "string": {}
4 }
5}