{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/CreateFieldIndex", "title": "CreateFieldIndex", "type": "object", "required": [ "field_name" ], "properties": { "field_name": { "type": "string" }, "field_schema": { "anyOf": [ { "$ref": "#/components/schemas/PayloadFieldSchema" }, { "nullable": true } ] } } }