link.schema.json
7 months ago
page-link.schema.json
7 months ago
post-object.schema.json
7 months ago
relationship.schema.json
7 months ago
taxonomy.schema.json
7 months ago
user.schema.json
7 months ago
link.schema.json
17 lines
| 1 | { |
| 2 | "title": "SCF Link Field Fragment", |
| 3 | "description": "Type-specific properties for link fields", |
| 4 | "type": "object", |
| 5 | "properties": { |
| 6 | "type": { |
| 7 | "enum": [ "link" ] |
| 8 | }, |
| 9 | "return_format": { |
| 10 | "type": "string", |
| 11 | "enum": [ "array", "url" ], |
| 12 | "default": "array", |
| 13 | "description": "Value returned (array with url/title/target or just URL string)" |
| 14 | } |
| 15 | } |
| 16 | } |
| 17 |