numberSchema property

Map<String, List<Map<String, dynamic>>> numberSchema

Implementation

static Map<String, List<Map<String, dynamic>>> get numberSchema => const {
      'anyOf': [
        {
          'type': 'string',
        },
        {
          'type': 'number',
        },
      ],
    };