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
oembed.schema.json
21 lines
| 1 | { |
| 2 | "title": "SCF oEmbed Field Fragment", |
| 3 | "description": "Type-specific properties for oEmbed fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "oembed" ] |
| 8 | }, |
| 9 | "width": { |
| 10 | "type": "string", |
| 11 | "default": "", |
| 12 | "description": "Maximum width of embedded content in pixels (empty for default)" |
| 13 | }, |
| 14 | "height": { |
| 15 | "type": "string", |
| 16 | "default": "", |
| 17 | "description": "Maximum height of embedded content in pixels (empty for default)" |
| 18 | } |
| 19 | } |
| 20 | } |
| 21 |