email.schema.json
7 months ago
number.schema.json
7 months ago
password.schema.json
7 months ago
range.schema.json
7 months ago
text.schema.json
7 months ago
textarea.schema.json
7 months ago
url.schema.json
7 months ago
password.schema.json
14 lines
| 1 | { |
| 2 | "title": "SCF Password Field Fragment", |
| 3 | "description": "Type-specific properties for password fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "password" ] |
| 8 | }, |
| 9 | "placeholder": { "$ref": "#/definitions/placeholder" }, |
| 10 | "prepend": { "$ref": "#/definitions/prepend" }, |
| 11 | "append": { "$ref": "#/definitions/append" } |
| 12 | } |
| 13 | } |
| 14 |