A response of a dyanmic form definition.
{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/stores-address-form-response-schema.json", "title": "AddressFormResponse", "description": "A response of a dyanmic form definition.", "type": "object", "properties": { "FormData": { "description": "List of field definitions.", "type": "array", "items": { "$ref": "#/components/schemas/DynamicFormField" }, "example": [] }, "CountryCode": { "description": "ISO two letter code.", "type": "string", "example": "IE" }, "Language": { "description": "ISO culture code.", "type": "string", "example": "string" }, "DisplayFormat": { "$ref": "#/components/schemas/AddressFormDisplayFormat" } } }