static checkIsMap()

in media/src/types/dataType.ts [111:116]


  static checkIsMap(schema: PontJsonSchema) {
    if (schema?.type === "object" && !schema.properties) {
      return true;
    }
    return false;
  }