docs: add signatureFlow parameter to OpenAPI specification

Update API documentation for request-signature endpoint.

- Add signatureFlow parameter to request body schema
- Type: string, nullable
- Description documents accepted values and fallback behavior

This ensures API consumers have accurate documentation for the
signature flow parameter.

Signed-off-by: Vitor Mattos <1079143+vitormattos@users.noreply.github.com>
This commit is contained in:
Vitor Mattos 2025-12-12 17:02:39 -03:00
parent 8a4e018c6a
commit 0e3ed551e6
No known key found for this signature in database
GPG key ID: 6FECE2AD4809003A
2 changed files with 10 additions and 0 deletions

View file

@ -6456,6 +6456,11 @@
"nullable": true,
"default": 1,
"description": "Numeric code of status * 0 - no signers * 1 - signed * 2 - pending"
},
"signatureFlow": {
"type": "string",
"nullable": true,
"description": "Signature flow mode: 'parallel' or 'ordered_numeric'. If not provided, uses global configuration"
}
}
}

View file

@ -6306,6 +6306,11 @@
"nullable": true,
"default": 1,
"description": "Numeric code of status * 0 - no signers * 1 - signed * 2 - pending"
},
"signatureFlow": {
"type": "string",
"nullable": true,
"description": "Signature flow mode: 'parallel' or 'ordered_numeric'. If not provided, uses global configuration"
}
}
}