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': 'OverflowBox',
  'type': 'object',
  'additionalProperties': false,
  'properties': {
    'alignment': SchemaHelper.objectSchema(AlignmentGeometrySchema.id),
    'fit': SchemaHelper.objectSchema(OverflowBoxFitSchema.id),
    'maxHeight': SchemaHelper.numberSchema,
    'maxWidth': SchemaHelper.numberSchema,
    'minHeight': SchemaHelper.numberSchema,
    'minWidth': SchemaHelper.numberSchema,
    'child': SchemaHelper.objectSchema(JsonWidgetDataSchema.id),
  },
};