I have a child flow that requires the following inputs to be defined
However, when calling this flow from another "parent" flow additional fields are requested and the call fails because I haven't populated them (even though the location field isn't mandatory)
Viewing the code for the trigger on the child flow does show these fields, but as you can see the interface doesn't show them within the Child flow. This doesn't feel correct, has anybody experienced this and knows of a fix?
{
"kind": "Button",
"inputs": {
"schema": {
"type": "object",
"properties": {
"text": {
"title": "Update type from parent flow",
"type": "string",
"x-ms-dynamically-added": true,
"description": "Please enter your input",
"x-ms-content-hint": "TEXT"
},
"number": {
"title": "id from parent flow",
"type": "number",
"x-ms-dynamically-added": true,
"description": "Please enter a number",
"x-ms-content-hint": "NUMBER"
},
"key-button-date": {
"title": "Date",
"type": "string",
"x-ms-dynamically-added": false
},
"location": {
"type": "object",
"properties": {
"fullAddress": {
"title": "Full address",
"type": "string",
"x-ms-dynamically-added": false
},
"address": {
"type": "object",
"properties": {
"countryOrRegion": {
"title": "Country/Region",
"type": "string",
"x-ms-dynamically-added": false
},
"city": {
"title": "City",
"type": "string",
"x-ms-dynamically-added": false
},
"state": {
"title": "State",
"type": "string",
"x-ms-dynamically-added": false
},
"street": {
"title": "Street",
"type": "string",
"x-ms-dynamically-added": false
},
"postalCode": {
"title": "Postal code",
"type": "string",
"x-ms-dynamically-added": false
}
},
"required": [
"countryOrRegion",
"city",
"state",
"street",
"postalCode"
]
},
"coordinates": {
"type": "object",
"properties": {
"latitude": {
"title": "Latitude",
"type": "number",
"x-ms-dynamically-added": false
},
"longitude": {
"title": "Longitude",
"type": "number",
"x-ms-dynamically-added": false
}
},
"required": [
"latitude",
"longitude"
]
}
}
}
},
"required": [
"text",
"number",
"key-button-date",
"location"
]
},
"headersSchema": {
"x-ms-user-name-encoded": {
"title": "User name",
"type": "string",
"format": "byte",
"x-ms-dynamically-added": false
},
"x-ms-user-email-encoded": {
"title": "User email",
"type": "string",
"format": "byte",
"x-ms-dynamically-added": false
},
"x-ms-user-timestamp": {
"title": "Timestamp",
"type": "string",
"x-ms-dynamically-added": false
}
}
},
"metadata": {
"operationMetadataId": "xxx"
}
}