{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-structure/apps-field-group-structure.json", "name": "FieldGroup", "description": "FieldGroup schema from Flipdish API - Apps.", "type": "object", "properties": { "Name": { "type": "string", "example": "Example Name" }, "Description": { "type": "string", "example": "string" }, "Tooltip": { "type": "string", "example": "string" }, "Position": { "maximum": 1000, "minimum": 1, "type": "int32", "example": 1 }, "Fields": { "type": "array", "items": { "$ref": "#/components/schemas/Field" }, "example": [] } }, "required": [ "Name", "Position" ] }