schema property

Map<String, Object> schema
final

Implementation

static final schema = <String, Object>{
  r'$schema': 'http://json-schema.org/draft-07/schema#',
  r'$id': id,
  'title': '_SetValue',
  'type': 'object',
  'additionalProperties': false,
  'properties': {
    'cleanup': SchemaHelper.boolSchema,
    'values': SchemaHelper.anySchema,
    'child': SchemaHelper.objectSchema(JsonWidgetDataSchema.id),
  },
};