{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/flipdish/refs/heads/main/json-schema/apps-field-group-schema.json", "title": "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": { "format": "int32", "maximum": 1000, "minimum": 1, "type": "integer", "example": 1 }, "Fields": { "type": "array", "items": { "$ref": "#/components/schemas/Field" }, "example": [] } }, "required": [ "Name", "Position" ] }