Skip to content

Instantly share code, notes, and snippets.

@spra85
Last active April 20, 2016 22:16
Show Gist options
  • Save spra85/a745dc935786e525a969a0dc0327263a to your computer and use it in GitHub Desktop.
Save spra85/a745dc935786e525a969a0dc0327263a to your computer and use it in GitHub Desktop.

Super Feature Editing

Example, no data yet

  {
    'fields': {
        'body': { 'type': 'richtext' },
        'image': { 'type': 'image' },
        'actors': {
            'type': 'array',
            'fields': {
                'first_name': { 'type': 'text' },
                'last_name': { 'type': 'text' }
            }
        },
        'director': {
            'type': 'object',
            'fields': {
                'first_name': { 'type': 'text'},
                'last_name': { 'type': 'text' }
            }
        }
    }
  }

Example, with values

  {
    'fields': {
        'body': { 'type': 'richtext' },
        'image': { 'type': 'image' },
        'actors': {
            'type': 'array',
            'fields': {
                'first_name': { 'type': 'text' },
                'last_name': { 'type': 'text' }
            }
        },
        'director': {
            'type': 'object',
            'fields': {
                'first_name': { 'type': 'text'},
                'last_name': { 'type': 'text' }
            }
        }
    },
    'values': {
        'body': '<p>some stuff</p>',
        'image': '12345',
        'actors': [
            { 'first_name': 'Cameron', 'last_name': 'Lowe'},
            { 'first_name': 'Collin', 'last_name': 'Miller'}
        ],
        'director': {
            'first_name': 'Dayton', 'last_name': 'Nolan' 
        }
    }
  }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment