{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/SecretSchemaPublic", "title": "SecretSchemaPublic", "type": "object", "properties": { "name": { "type": "string" }, "human_readable_name": { "type": [ "string", "null" ] }, "prefix": { "type": [ "string", "null" ] }, "suffix": { "type": [ "string", "null" ] }, "field_type": { "type": "string" }, "options": { "type": [ "array", "null" ], "items": { "$ref": "#/components/schemas/SecretOptionPublic" } } }, "required": [ "name", "human_readable_name", "prefix", "suffix", "field_type", "options" ] }