{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SubFormFieldsPerDocumentDropdown", "title": "SubFormFieldsPerDocumentDropdown", "description": "_t__Sub::FormFieldsPerDocument::DESCRIPTION_EXTENDS", "allOf": [ { "$ref": "#/components/schemas/SubFormFieldsPerDocumentBase" }, { "required": [ "type", "options" ], "properties": { "type": { "description": "_t__Sub::FormFieldsPerDocument::TYPE_DROPDOWN", "type": "string", "default": "dropdown" }, "options": { "description": "_t__Sub::FormFieldsPerDocument::OPTIONS", "type": "array", "items": { "type": "string" }, "minItems": 1 }, "content": { "description": "_t__Sub::FormFieldsPerDocument::CONTENT_DROPDOWN", "type": "string" }, "font_family": { "description": "_t__Sub::FormFieldsPerDocument::FONT_FAMILY", "type": "string", "enum": [ "helvetica", "arial", "courier", "calibri", "cambria", "georgia", "times", "trebuchet", "verdana", "roboto", "robotoMono", "notoSans", "notoSerif", "notoCJK-JP-Regular", "notoHebrew-Regular", "notoSanThaiMerged" ] }, "font_size": { "description": "_t__Sub::FormFieldsPerDocument::FONT_SIZE", "type": "integer", "default": 12 } }, "type": "object" }, { "$ref": "#/components/schemas/SubFormFieldsPerDocumentBase" } ] }