It can be used for Field Mappings or as a component for any other schema used in an integration.
Referencing Schema
You can reference an App Data Schema in other schemas using the$ref formula:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
$ref formula:
{
"type": "object",
"properties": {
"name": { "type": "string" },
"user": {
"$ref": "schemas/user" // Reference to the "user" App Data Schema
}
}
}