file.schema.json
7 months ago
gallery.schema.json
7 months ago
image.schema.json
7 months ago
oembed.schema.json
7 months ago
wysiwyg.schema.json
7 months ago
file.schema.json
16 lines
| 1 | { |
| 2 | "title": "SCF File Field Fragment", |
| 3 | "description": "Type-specific properties for file fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "file" ] |
| 8 | }, |
| 9 | "return_format": { "$ref": "#/definitions/return_format_media" }, |
| 10 | "library": { "$ref": "#/definitions/library" }, |
| 11 | "min_size": { "$ref": "#/definitions/min_size" }, |
| 12 | "max_size": { "$ref": "#/definitions/max_size" }, |
| 13 | "mime_types": { "$ref": "#/definitions/mime_types" } |
| 14 | } |
| 15 | } |
| 16 |