{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/stores-dynamic-form-field-schema.json", "title": "DynamicFormField", "description": "DynamicFormField schema from Flipdish API - Stores.", "type": "object", "properties": { "Identifier": { "type": "string", "example": "string" }, "Label": { "type": "string", "example": "string" }, "Placeholder": { "type": "string", "example": "string" }, "Rules": { "$ref": "#/components/schemas/DynamicFormRules" }, "Mapping": { "type": "object", "additionalProperties": { "type": "string" } }, "Modifiers": { "type": "array", "items": { "type": "string" }, "example": [ "string" ] }, "Value": { "type": "object" }, "Scopes": { "type": "string", "example": "string" } } }